forked from GraylinKim/sc2reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (30 loc) · 988 Bytes
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
import setuptools
setuptools.setup(
name="sc2reader",
version="0.2.0",
license="MIT",
author="Graylin Kim",
author_email="graylin.kim@gmail.com",
url="https://github.com/GraylinKim/sc2reader",
description="Utility for parsing Starcraft II replay files",
long_description=''.join(open("README.txt").readlines()),
keywords=["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 :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Games/Entertainment :: Real Time Strategy",
],
requires=['mpyq'],
install_requires=['mpyq==0.1.5'],
packages=['sc2reader'],
scripts=['scripts/sc2printer'],
)