-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
39 lines (37 loc) · 1.38 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
#!/usr/bin/env python
from setuptools import setup
from mpyq import __version__ as version
setup(name='mpyq',
version=version,
author='Aku Kotkavuo',
author_email='aku.kotkavuo@gmail.com',
url='http://github.com/eagleflo/mpyq/',
description='A Python library for extracting MPQ (MoPaQ) files.',
py_modules=['mpyq'],
entry_points={
'console_scripts': ['mpyq = mpyq:main']
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Games/Entertainment :: Real Time Strategy',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Archiving',
],
install_requires=[
'argparse; python_version < "2.7"',
'mock; python_version < "3.3"',
'six',
])