-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 959 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
setup(
name='jitterbug_dmc',
version='0.0.1a',
description='A Jitterbug dm_control Reinforcement Learning domain',
license='MIT',
python_requires='>=3.5',
packages=['jitterbug_dmc'],
install_requires=[
"dm_control @ git+https://github.com/deepmind/dm_control@09b27a0b7232c6a5a5045a2b7a608cbfc693f85a",
"dm2gym @ git+https://github.com/zuoxingdong/dm2gym@e16048a33a875943556a62b69bbf63e28c7f1d3c",
"stable-baselines>=2.6.4"
],
include_package_data=True,
author='Aaron Snoswell',
author_email='[email protected]',
url='https://github.com/aaronsnoswell/jitterbug-dmc',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
]
)