-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·125 lines (111 loc) · 3.97 KB
/
setup.py
File metadata and controls
executable file
·125 lines (111 loc) · 3.97 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS-IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Module setuptools script."""
import distutils.command.build
import os
import subprocess
from setuptools import setup
description = """PySC2 - StarCraft II Learning Environment
PySC2 is DeepMind's Python component of the StarCraft II Learning Environment
(SC2LE). It exposes Blizzard Entertainment's StarCraft II Machine Learning API
as a Python RL Environment. This is a collaboration between DeepMind and
Blizzard to develop StarCraft II into a rich environment for RL research. PySC2
provides an interface for RL agents to interact with StarCraft 2, getting
observations and sending actions.
We have published an accompanying blogpost and paper
https://deepmind.com/blog/deepmind-and-blizzard-open-starcraft-ii-ai-research-environment/
which outlines our motivation for using StarCraft II for DeepRL research, and
some initial research results using the environment.
Read the README at https://github.com/deepmind/pysc2 for more information.
"""
class BuildCommand(distutils.command.build.build):
def initialize_options(self):
distutils.command.build.build.initialize_options(self)
# To avoid conflicting with the Bazel BUILD file.
self.build_base = "_build"
if os.name == "posix" and "linux" in os.uname().sysname.lower():
# Try to find the libcap development headers
try:
subprocess.check_call(["dpkg", "-s", "libcap-dev"])
install_prctl = True
except subprocess.CalledProcessError:
print("libcap-dev not found, skipping installation of python-prctl")
install_prctl = False
else:
install_prctl = False
install_requires = [
"absl-py>=0.1.0",
"deepdiff",
"dm_env",
"enum34",
"mock",
"mpyq",
"numpy>=1.10",
"portpicker>=1.2.0",
"protobuf>=2.6",
"pygame",
"requests",
"s2clientprotocol>=4.10.1.75800.0",
"s2protocol",
"sk-video",
"websocket-client",
]
if install_prctl:
install_requires += ["python-prctl"]
setup(
name="PySC2",
version="4.0.0",
description="Starcraft II environment and library for training agents.",
long_description=description,
author="DeepMind",
author_email="pysc2@deepmind.com",
cmdclass={
"build": BuildCommand,
},
license="Apache License, Version 2.0",
keywords="StarCraft AI",
url="https://github.com/deepmind/pysc2",
packages=[
"pysc2",
"pysc2.agents",
"pysc2.bin",
"pysc2.env",
"pysc2.lib",
"pysc2.maps",
"pysc2.run_configs",
"pysc2.tests",
],
install_requires=install_requires,
entry_points={
"console_scripts": [
"pysc2_agent = pysc2.bin.agent:entry_point",
"pysc2_play = pysc2.bin.play:entry_point",
"pysc2_replay_info = pysc2.bin.replay_info:entry_point",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)