mirror of
https://github.com/wassname/cr-dv3.git
synced 2026-09-12 12:21:56 +08:00
First commit.
This commit is contained in:
@@ -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',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user