-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (25 loc) · 795 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
import sys
# Reminder: Template Generated
try:
from setuptools import setup
except ImportError:
print("avakas requires setuptools")
sys.exit(1)
def main():
version = '2.0.10'
setup(name='avakas',
version=version,
description='Interact with project version metadata',
author='Jonathan Freedman',
author_email='jonafree@gmail.com',
license='MIT',
url='https://github.com/otakup0pe/avakas',
install_requires=['semantic_version==2.10.0', 'gitpython==3.1.44'],
packages=['avakas', 'avakas.flavors'],
entry_points={
'console_scripts': ['avakas = avakas.cli:main']
},
include_package_data=True)
if __name__ == "__main__":
main()