forked from mikedh/trimesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (71 loc) · 2.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
import os
from setuptools import setup
# load __version__
exec(open('trimesh/version.py').read())
long_description = ''
if os.path.exists('README.md'):
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='trimesh',
version=__version__,
description='Import, export, process, analyze and view triangular meshes.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Michael Dawson-Haggerty',
author_email='[email protected]',
license='MIT',
url='http://github.com/mikedh/trimesh',
keywords='graphics mesh geometry 3D',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Natural Language :: English',
'Topic :: Scientific/Engineering'],
packages=[
'trimesh',
'trimesh.io',
'trimesh.ray',
'trimesh.path',
'trimesh.path.io',
'trimesh.scene',
'trimesh.resources',
'trimesh.interfaces'],
package_data={'trimesh': ['resources/*.template',
'resources/*.json']},
install_requires=['numpy',
'scipy',
'networkx'],
extras_require={'easy': ['lxml',
'pyglet',
'shapely',
'rtree',
'svg.path',
'sympy',
'msgpack',
'pillow',
'requests',
'xxhash',
'colorlog'],
'all': ['lxml',
'pyglet',
'shapely',
'rtree',
'svg.path',
'triangle',
'sympy',
'msgpack',
'python-fcl',
'colorlog',
'xxhash',
'requests',
'pillow',
'setuptools']}
)