First commit.

This commit is contained in:
Isaac Kauvar
2023-06-22 09:54:27 -04:00
commit 2c4a2c08cf
86 changed files with 10667 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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',
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',
],
)