-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 999 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
31
32
33
34
35
36
#!/usr/bin/python
from setuptools import setup
setup(
name='musdex',
version='17.09.13',
description='musdex -- VCS-aware zip archive tool',
author='Max Battcher',
author_email='me@worldmaker.net',
url='http://musdex.code.worldmaker.net',
packages=['musdex'],
#scripts=['scripts/musdex', 'scripts/xedsum'],
entry_points={
'console_scripts': [
'musdex = musdex.__main__:main',
'xedsum = musdex.__main__:xedsum',
]
},
requires=[
'argparse',
'yaml',
],
license='Microsoft Reciprocal License (Ms-RL)',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Version Control',
],
zip_safe=True,
)
# vim: ai et ts=4 sts=4 sw=4