Skip to content

Commit 5a80a14

Browse files
committed
Fix spacing inconsistencies and add zip_safe flag.
1 parent e2f5c84 commit 5a80a14

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

setup.py

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
import setuptools, sys
22

33
setuptools.setup(
4-
name="sc2reader",
5-
version='0.3.3',
6-
license="MIT",
4+
name="sc2reader",
5+
version='0.3.3',
6+
license="MIT",
77

8-
author="Graylin Kim",
9-
author_email="[email protected]",
10-
url="https://github.com/GraylinKim/sc2reader",
8+
author="Graylin Kim",
9+
author_email="[email protected]",
10+
url="https://github.com/GraylinKim/sc2reader",
1111

12-
description="Utility for parsing Starcraft II replay files",
13-
long_description=open("README.txt").read(),
14-
keywords=["starcraft 2","sc2","parser","replay"],
15-
classifiers=[
16-
"Environment :: Console",
17-
"Development Status :: 4 - Beta",
18-
"Programming Language :: Python",
19-
"Programming Language :: Python :: 2.7",
20-
"Intended Audience :: Developers",
21-
"License :: OSI Approved :: MIT License",
22-
"Natural Language :: English",
23-
"Operating System :: OS Independent",
24-
"Environment :: Other Environment",
25-
"Topic :: Utilities",
26-
"Topic :: Software Development :: Libraries",
27-
"Topic :: Games/Entertainment :: Real Time Strategy",
28-
],
29-
entry_points={
12+
description="Utility for parsing Starcraft II replay files",
13+
long_description=open("README.txt").read(),
14+
keywords=["starcraft 2","sc2","parser","replay"],
15+
classifiers=[
16+
"Environment :: Console",
17+
"Development Status :: 4 - Beta",
18+
"Programming Language :: Python",
19+
"Programming Language :: Python :: 2.7",
20+
"Intended Audience :: Developers",
21+
"License :: OSI Approved :: MIT License",
22+
"Natural Language :: English",
23+
"Operating System :: OS Independent",
24+
"Environment :: Other Environment",
25+
"Topic :: Utilities",
26+
"Topic :: Software Development :: Libraries",
27+
"Topic :: Games/Entertainment :: Real Time Strategy",
28+
],
29+
entry_points={
3030
'console_scripts': [
3131
'sc2autosave = sc2reader.scripts.sc2autosave:main',
3232
'sc2printer = sc2reader.scripts.sc2printer:main',
3333
'sc2store = sc2reader.scripts.sc2store:main',
3434
'sc2replayer = sc2reader.scripts.sc2replayer:main',
3535
]
3636
},
37-
install_requires=['mpyq','argparse'] if float(sys.version[:3]) < 2.7 else ['mpyq'],
38-
packages=['sc2reader', 'sc2reader.scripts', 'sc2reader.processors', 'sc2reader.data'],
37+
install_requires=['mpyq','argparse'] if float(sys.version[:3]) < 2.7 else ['mpyq'],
38+
packages=['sc2reader', 'sc2reader.scripts', 'sc2reader.processors', 'sc2reader.data'],
39+
zip_safe=True
3940
)

0 commit comments

Comments
 (0)