|
1 | 1 | import setuptools, sys |
2 | 2 |
|
3 | 3 | setuptools.setup( |
4 | | - name="sc2reader", |
5 | | - version='0.3.3', |
6 | | - license="MIT", |
| 4 | + name="sc2reader", |
| 5 | + version='0.3.3', |
| 6 | + license="MIT", |
7 | 7 |
|
8 | | - author="Graylin Kim", |
9 | | - |
10 | | - url="https://github.com/GraylinKim/sc2reader", |
| 8 | + author="Graylin Kim", |
| 9 | + |
| 10 | + url="https://github.com/GraylinKim/sc2reader", |
11 | 11 |
|
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={ |
30 | 30 | 'console_scripts': [ |
31 | 31 | 'sc2autosave = sc2reader.scripts.sc2autosave:main', |
32 | 32 | 'sc2printer = sc2reader.scripts.sc2printer:main', |
33 | 33 | 'sc2store = sc2reader.scripts.sc2store:main', |
34 | 34 | 'sc2replayer = sc2reader.scripts.sc2replayer:main', |
35 | 35 | ] |
36 | 36 | }, |
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 |
39 | 40 | ) |
0 commit comments