|
a |
|
b/setup.py |
|
|
1 |
#!/usr/bin/env python |
|
|
2 |
|
|
|
3 |
import os |
|
|
4 |
|
|
|
5 |
|
|
|
6 |
from setuptools import setup, find_packages |
|
|
7 |
|
|
|
8 |
# This provides the variable `__version__`. |
|
|
9 |
# execfile('opensim/version.py') |
|
|
10 |
__version__ = "3.0.11" |
|
|
11 |
|
|
|
12 |
setup(name='osim-rl', |
|
|
13 |
version=__version__, |
|
|
14 |
description='OpenSim Reinforcement Learning Framework', |
|
|
15 |
author='Lukasz Kidzinski', |
|
|
16 |
author_email='lukasz.kidzinski@stanford.edu', |
|
|
17 |
url='http://opensim.stanford.edu/', |
|
|
18 |
license='Apache 2.0', |
|
|
19 |
packages=find_packages(), |
|
|
20 |
package_data={'osim': ['models/Geometry/*.vtp', 'models/*.osim']}, |
|
|
21 |
include_package_data=True, |
|
|
22 |
install_requires=['numpy>=1.14.2','gym>=0.10.4', 'redis>=2.10.6', 'timeout-decorator>=0.4.0', 'matplotlib>=3.0.3'], |
|
|
23 |
classifiers=[ |
|
|
24 |
'Intended Audience :: Science/Research', |
|
|
25 |
'Operating System :: OS Independent', |
|
|
26 |
'Programming Language :: Python :: 3.5', |
|
|
27 |
'Topic :: Scientific/Engineering :: Artificial Intelligence', |
|
|
28 |
], |
|
|
29 |
) |