-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (41 loc) · 1.26 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
INSTALL_REQUIRES = [
'torch>=1.7',
'gym[atari]>=0.17.2'
]
TEST_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov',
# unmandatory dependencies of the package itself
# to be able to run `python setup.py checkdocs`
'collective.checkdocs', 'pygments',
]
DOCS_REQUIRES = [
'sphinx>=2.0'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pytorch_seed_rl",
license="Apache 2.0",
version="0.0.1",
author="Michael Janschek",
author_email="[email protected]",
description="PyTorch Implementation of SEED-RL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mjanschek/pytorch_seed_rl",
packages=setuptools.find_packages(),
python_requires=">=3.7",
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
'docs': DOCS_REQUIRES + TEST_REQUIRES + INSTALL_REQUIRES,
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)