forked from pfnet/pfrl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (27 loc) · 827 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 codecs
from setuptools import find_packages
from setuptools import 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)