forked from alters-mit/tdw_physics
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (30 loc) · 1.1 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
from setuptools import setup, find_packages
setup(
name='tdw_physics',
version="0.3.1",
description='Generic structure to create physics datasets with TDW.',
long_description="Required Python scripts for TDW.",
url='https://github.com/alters-mit/tdw_physics',
author='Seth Alter',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
keywords='unity simulation tdw hdf5',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['tqdm',
'numpy',
'h5py',
'pillow',
'weighted-collection',
'stopit',
'tdw>=1.9.16',
'matplotlib',
'trimesh'],
)