-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.07 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
import setuptools
setuptools.setup(
name="sc2replay-lib",
version="0.1.3",
license="MPL 1.1",
author="Dominic Baranski",
author_email="dominic.baranski@gmail.com",
url="https://github.com/dcbarans/sc2replay-lib",
description="Basic library for reading details about a Blizzard (TM) StarCraft(TM) 2 replay file",
long_description=''.join(open("README.txt").readlines()),
keywords=["starcraft", "sc", "starcraft 2","sc2","parser","replay"],
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Games/Entertainment :: Real Time Strategy",
],
setup_requires=['argparse'],
install_requires=['mpyq>=0.1.8', 'argparse'],
packages=['sc2replaylib', 'sc2replaylib.parsers'],
)