-
Notifications
You must be signed in to change notification settings - Fork 236
/
setup.py
30 lines (26 loc) · 952 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
24
25
26
27
28
29
30
import pathlib
import setuptools
def parse_reqs(filename):
requirements = pathlib.Path(filename)
requirements = requirements.read_text().split('\n')
requirements = [x for x in requirements if x.strip()]
return requirements
setuptools.setup(
name='dreamer',
version='3.3.1',
author='Danijar Hafner',
author_email='[email protected]',
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=setuptools.find_packages(),
include_package_data=True,
install_requires=parse_reqs('requirements.txt'),
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)