forked from tum-i4/macke
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 925 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
#!/usr/bin/env python
from setuptools import setup
import sys
if sys.version_info[0] == 3 and sys.version_info[1] < 4:
sys.exit('Sorry, Python < 3.4 is not supported')
setup(
name='macke',
version='0.1-alpha',
packages=['macke'],
url="https://github.com/tum-i22/macke",
author="Saahil Ognawala",
author_email="[email protected]",
license="Apache Software License",
entry_points={
'console_scripts': [
'macke = macke.__main__:main',
'macke-analyze = macke.analyse.everything:main',
'shamrock = shamrock.__main__:main',
]
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)