forked from Tencent/TStarBot1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 788 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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup
description = """Macro-action-based StarCraft-II learning environment."""
setup(
name='sc2learner',
version='0.1',
description='Macro-action-based StarCraft-II learning environment.',
long_description=description,
author='Tencent AI Lab',
author_email='[email protected]',
keywords='sc2learner StarCraft AI TStarBot',
packages=[
'sc2learner',
'sc2learner.agents',
'sc2learner.envs',
'sc2learner.utils',
'sc2learner.bin',
],
install_requires=[
'gym==0.10.5',
'torch>=0.4.0',
'tensorflow>=1.4.1',
'joblib',
'pyzmq'
]
)