-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (37 loc) · 1.15 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
import setuptools
setuptools.setup(
name='tensorflow_rl',
version='0.2.0',
author='ChaKeumgang',
author_email='[email protected]',
description='tensorflow-rl: Modular Deep Reinforcement Learning Framework.',
keywords='tensorflow gym atari tensorflow machine reinforcement learning neural network',
include_package_data=False,
packages=setuptools.find_packages(),
py_modules=['tensorflow_rl'],
install_requires=[
'numpy >= 1.13',
'gym >= 0.10.5',
'Box2D >= 2.3.2',
'tensorboardX >= 1.4'
],
extras_require={
'tf-cpu': [
'tensorflow == 1.10.0',
],
'tf-gpu': [
'tensorflow-gpu == 1.10.0',
]
},
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
url='https://github.com/RLOpensource/tensorflow_RL',
)