forked from eagleflo/mpyq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.17 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
#!/usr/bin/env python
import sys
from setuptools import setup
from mpyq import __version__ as version
setup(name='mpyq',
version=version,
author='Aku Kotkavuo and heinrich5991',
author_email='[email protected] [email protected]',
url='http://github.com/arkx/mpyq/',
description='A Python library for extracting MPQ (MoPaQ) files.',
py_modules=['mpyq'],
entry_points={
'console_scripts': ['mpyq = mpyq:main']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Games/Entertainment :: Real Time Strategy',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Archiving',
],
install_requires=['argparse'] if float(sys.version[:3]) < 2.7 else [],
)