forked from chainer/chainerrl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 807 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
31
32
33
34
35
36
from setuptools import find_packages
from setuptools import setup
import sys
install_requires = [
'cached-property',
'chainer>=1.20.0.1',
'future',
'gym>=0.7.3',
'numpy>=1.10.4',
'pillow',
'scipy',
]
test_requires = [
'nose',
]
if sys.version_info < (3, 2):
install_requires.append('fastcache')
if sys.version_info < (3, 4):
install_requires.append('statistics')
if sys.version_info < (3, 5):
install_requires.append('funcsigs')
setup(name='chainerrl',
version='0.1.0',
description='ChainerRL, a deep reinforcement learning library',
author='Yasuhiro Fujita',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
install_requires=install_requires,
test_requires=test_requires)