-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (23 loc) · 936 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='transport_challenge',
version="0.3.7",
description='Transport Challenge API. Extends the Magnebot API and the TDW API.',
long_description='Transport Challenge API. Extends the Magnebot API and the TDW API.',
url='https://github.com/alters-mit/transport_challenge',
author='Seth Alter',
author_email="[email protected]",
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 magnebot',
packages=find_packages(),
install_requires=['ikpy==3.1', 'magnebot==1.1.1', 'numpy', 'tdw==1.8.7.0', 'scipy']
)