-
Notifications
You must be signed in to change notification settings - Fork 249
/
setup.py
29 lines (24 loc) · 970 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
26
27
28
29
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
# This provides the variable `__version__`.
# execfile('opensim/version.py')
__version__ = "3.0.11"
setup(name='osim-rl',
version=__version__,
description='OpenSim Reinforcement Learning Framework',
author='Lukasz Kidzinski',
author_email='[email protected]',
url='http://opensim.stanford.edu/',
license='Apache 2.0',
packages=find_packages(),
package_data={'osim': ['models/Geometry/*.vtp', 'models/*.osim']},
include_package_data=True,
install_requires=['numpy>=1.14.2','gym>=0.10.4', 'redis>=2.10.6', 'timeout-decorator>=0.4.0', 'matplotlib>=3.0.3'],
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)