-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (37 loc) · 1.91 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
from setuptools import setup, find_packages
import sys, os.path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'assistive_gym'))
with open("README.md", "r") as f:
long_description = f.read()
directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'assistive_gym', 'envs', 'assets')
data_files = [os.path.join(os.path.dirname(os.path.realpath(__file__)), 'assistive_gym', 'config.ini')]
for root, dirs, files in os.walk(directory):
for fn in files:
data_files.append(os.path.join(root, fn))
setup(name='assistive-gym',
version='0.100',
packages=find_packages(),
python_requires='>=3',
install_requires=['gym>=0.2.3', 'pybullet', 'numpy', 'keras==2.3.0', 'tensorflow==1.14.0', 'h5py==2.10.0'] + ['screeninfo' if sys.version_info >= (3, 6) else 'screeninfo==0.2'],
description='Physics simulation for assistive robotics and human-robot interaction.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Healthcare-Robotics/assistive-gym',
author='Zackory Erickson',
author_email='[email protected]',
license='MIT',
platforms='any',
keywords=['robotics', 'assitive robotics', 'human-robot interaction', 'physics simulation'],
package_data={'assistive_gym': data_files},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX :: Linux',
'Operating System :: MacOS', 'Intended Audience :: Science/Research',
"Programming Language :: Python",
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Topic :: Games/Entertainment :: Simulation',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Framework :: Robot Framework'
],
)