forked from danijar/dreamerv2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 995 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
import setuptools
import pathlib
setuptools.setup(
name='dreamerv2',
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', 'dreamerv2.common'],
package_data={'dreamerv2': ['configs.yaml']},
entry_points={'console_scripts': ['dreamerv2=dreamerv2.train:main']},
install_requires=[
'tensorflow==2.6.0', 'tensorflow_probability==0.14.1', 'ruamel.yaml', 'dm_control', 'pudb', 'sk-video',
'gymnasium-notices==0.0.1', 'matplotlib', 'protobuf==3.19.6', 'keras==2.6.0'],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)