-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
54 lines (46 loc) · 1.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
from setuptools import setup, find_packages
def read(fpath):
with open(fpath, 'r') as f:
return f.read()
def version(fpath):
return read(fpath).strip()
setup(
name='gitcd',
version=version('version.txt'),
description='Tool for continuous delivery using git',
long_description=read('README.rst'),
author='Claudio Walser',
author_email='info@gitcd.io',
url='https://www.gitcd.io',
packages=find_packages(),
install_requires=[
'simpcli',
'pyyaml',
'argparse',
'argcomplete',
'requests',
'packaging',
'typing'
],
entry_points={
'console_scripts': [
'git-cd = gitcd.bin.console:main',
'git-cd-ui = gitcd.bin.kivy:main',
]
},
license='Apache License',
keywords=['git', 'application', 'continuos delivery'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities'
]
)