mirror of
https://github.com/wassname/cr-dv3.git
synced 2026-08-20 12:20:25 +08:00
23 lines
783 B
Python
23 lines
783 B
Python
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',
|
|
],
|
|
)
|