-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
40 lines (35 loc) · 978 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
37
38
39
40
#!/usr/bin/env python
from setuptools import setup
install_requires = [
'boto3>=1.4.5',
'click>=6.7',
'configparser>=3.5.0',
'docker>=2.4.2',
'dockerpty>=0.4.1',
'jsonpath>=0.75',
'tabulate>=0.7.7',
'humanize>=0.5.1',
'pytz>=2017.2',
]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: System :: Clustering',
]
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='ecsctl',
version='20200907',
description='kubectl-style command line client for AWS ECS.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Xiuming Chen',
author_email='cc@cxm.cc',
url='https://github.com/cxmcc/ecsctl',
packages=['ecsctl'],
entry_points={'console_scripts': ['ecsctl = ecsctl.__main__:main']},
install_requires=install_requires,
keywords=['ECS', 'kubectl', 'AWS'],
classifiers=classifiers,
)