forked from eagleflo/mpyq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1018 Bytes
/
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
#!/usr/bin/env python
from mpyq import __version__ as version
from setuptools import setup
setup(name='mpyq',
version=version,
author='Aku Kotkavuo',
author_email='[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.7',
'Topic :: Games/Entertainment :: Real Time Strategy',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Archiving',
],
)