-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (25 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name='tdw_physics',
version="0.4.3",
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',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
keywords='unity simulation tdw hdf5',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['tqdm', 'numpy', 'h5py', 'pillow', 'weighted-collection', 'tdw >= 1.11.13.0'],
)