-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (24 loc) · 883 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (24 loc) · 883 Bytes
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__ = 1.3
setup(name='osim-rl',
version=__version__,
description='OpenSim Reinforcement Learning Framework',
author='Lukasz Kidzinski',
author_email='lukasz.kidzinski@stanford.edu',
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','gym'],
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)