-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Setup of core python codebase
Author: Jeff Mahler
"""
from setuptools import setup
requirements = [
'autolab_core',
'numpy',
'lxml',
'pyyaml',
'trimesh',
'visualization',
]
exec(open('thingset/version.py').read())
setup(
name='thingset',
version = __version__,
description = 'Thingiverse dataset downloader and parser',
long_description = 'Thingiverse dataset downloader and parser',
author = 'Matthew Matl',
author_email = '[email protected]',
license = 'MIT Software License',
url = 'https://github.com/mmatl/thingset',
keywords = '3D modeling printing dataset',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Topic :: Scientific/Engineering'
],
packages = ['thingset'],
install_requires = requirements,
)