-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 895 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
import setuptools
import pathlib
setuptools.setup(
name='dreamerv2_APS',
version='2.2.0',
description='Mastering Atari with Discrete World Models',
url='http://github.com/danijar/dreamerv2',
# long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
packages=['dreamerv2_APS', 'dreamerv2_APS.common'],
package_data={'dreamerv2_APS': ['configs.yaml']},
entry_points={'console_scripts': ['dreamerv2_APS=dreamerv2_APS.train:main']},
install_requires=[
'gym[atari]', 'atari_py', 'crafter', 'dm_control', 'ruamel.yaml'],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)