forked from GraylinKim/sc2reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.75 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools, sys
setuptools.setup(
name="sc2reader",
version='0.4.0',
license="MIT",
author="Graylin Kim",
author_email="[email protected]",
url="https://github.com/GraylinKim/sc2reader",
description="Utility for parsing Starcraft II replay files",
long_description=open("README.rst").read(),
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",
],
entry_points={
'console_scripts': [
'sc2autosave = sc2reader.scripts.sc2autosave:main',
'sc2printer = sc2reader.scripts.sc2printer:main',
'sc2store = sc2reader.scripts.sc2store:main',
'sc2replayer = sc2reader.scripts.sc2replayer:main',
'sc2boprinter = sc2reader.scripts.sc2boprinter:main',
'sc2parse = sc2reader.scripts.sc2parse:main',
'sc2attributes = sc2reader.scripts.sc2attributes:main',
]
},
install_requires=['mpyq','argparse'] if float(sys.version[:3]) < 2.7 else ['mpyq'],
packages=['sc2reader', 'sc2reader.scripts', 'sc2reader.plugins', 'sc2reader.data'],
package_data={'sc2reader.data':['*.csv','*.json']},
include_package_data=True,
zip_safe=True
)