forked from pfnet/pfrl
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 793 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 793 Bytes
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
import codecs
from setuptools import find_packages, setup
install_requires = [
"torch>=1.3.0",
"gym>=0.9.7",
"numpy>=1.10.4",
"pillow",
"filelock",
]
test_requires = [
"pytest",
"scipy",
"optuna",
"attrs<19.2.0", # pytest does not run with attrs==19.2.0 (https://github.com/pytest-dev/pytest/issues/3280) # NOQA
]
setup(
name="pfrl",
version="0.4.0",
description="PFRL, a deep reinforcement learning library",
long_description=codecs.open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Yasuhiro Fujita",
author_email="[email protected]",
license="MIT License",
packages=find_packages(),
install_requires=install_requires,
test_requires=test_requires,
)