-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 843 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
from setuptools import setup, find_packages
setup(name='jiminy',
version='0.21.5',
description="Jiminy is an imitation learning library.",
url='https://github.com/sibeshkar/jiminy',
author='Boxware',
author_email='[email protected]',
packages=[package for package in find_packages()
if package.startswith('jiminy')],
install_requires=[
'numpy>=1.16.2',
'autobahn>=0.16.0',
'docker-py==1.10.3',
'docker-pycreds==0.2.1',
'fastzbarlight>=0.0.13',
'go-vncdriver>=0.4.8',
'Pillow>=3.3.0',
'PyYAML>=5.1',
'six>=1.10.0',
'twisted>=16.5.0',
'ujson>=1.35',
],
package_data={'jiminy': ['runtimes.yml', 'runtimes/flashgames.json']},
tests_require=['pytest']
)