-
Notifications
You must be signed in to change notification settings - Fork 90
/
setup.py
52 lines (50 loc) · 1.53 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
48
49
50
51
52
import setuptools
with open("README.md", 'r') as f:
long_description = f.read()
setuptools.setup(
name='reaver',
version='2.1.9',
author='Roman Ring',
author_email='inoryy@gmail.com',
description='Reaver: Modular Deep Reinforcement Learning Framework. Focused on StarCraft II. '
'Supports Gym, Atari, and MuJoCo. Matches reference results.',
long_description=long_description,
keywords='reaver starcraft2 gym atari mujoco tensorflow reinforcement learning neural network',
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=[
'PySC2 >= 3.0.0',
'gin-config >= 0.3.0',
'tensorflow >= 2.1.0',
'tensorflow-probability >= 0.9.0'
],
extras_require={
'gym': [
'PyOpenGL',
'gym >= 0.9',
'opencv-python'
],
'atari': [
'Pillow',
'PyOpenGL',
'gym >= 0.9',
'atari_py >= 0.1.4',
],
'mujoco': [
'imageio',
'gym >= 0.9',
'mujoco_py >= 1.50',
]
},
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/inoryy/reaver',
)