-
Notifications
You must be signed in to change notification settings - Fork 233
/
setup.py
23 lines (21 loc) · 812 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
import pathlib
import setuptools
from setuptools import find_namespace_packages
setuptools.setup(
name='dreamerv3',
version='1.5.0',
description='Mastering Diverse Domains through World Models',
author='Danijar Hafner',
url='http://github.com/danijar/dreamerv3',
long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
packages=find_namespace_packages(exclude=['example.py']),
include_package_data=True,
install_requires=pathlib.Path('requirements.txt').read_text().splitlines(),
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)