-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 841 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
#! /usr/bin/env python
# third party
from setuptools import find_packages, setup
setup(
name='hsr-env',
version='0.0.0',
description='An environment conforming to OpenAI Gym standard\
for the Toyota Human Support Robot',
url='https://github.com/lobachevzky/hsr-env',
author='Ethan Brooks',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
package_data={
'environments': ['**/*.xml', '**/*.mjcf', 'hsr_meshes/meshes/*/*.stl'],
},
install_requires=['gym', 'numpy'])