forked from Dentosal/python-sc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name = "sc2",
packages = find_packages(),
version = "0.8.4",
description = "A StarCraft II API Client for Python 3",
license="MIT",
author = "Hannes Karppila",
author_email = "[email protected]",
url = "https://github.com/Dentosal/python-sc2",
keywords = ["StarCraft", "StarCraft 2", "StarCraft II", "AI", "Bot"],
install_requires=["s2clientprotocol", "websockets", "portpicker", "async_timeout"],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Real Time Strategy",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
]
)