-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (29 loc) · 885 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 setuptools import setup, find_packages
setup(
name="deploybot-cli",
test_suite='test',
version='0.3.2',
description=u"Deploybot API Client",
long_description=u"Deploybot terminal tool",
classifiers=[],
keywords='deploy,service,api,client,cli,deploybot,continuous,delivery,cd',
author=u"Thiago Paes",
author_email='mrprompt@gmail.com',
url='https://github.com/mrprompt/deploybot-cli',
license='GPL',
include_package_data=True,
zip_safe=False,
packages=find_packages(exclude=['test']),
install_requires=[
'tableprint', 'deploybot-sdk', 'deploybot-client', 'click'
],
extras_require={
'test': ['pytest', 'pytest-cov', 'mock', 'unittest-data-provider', 'coverage'],
},
entry_points={
'console_scripts': [
'deploybot = cli.cli:cli'
]
}
)