-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.1 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='ya-ecs-ctl',
description='AWS ECS Control Tool',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.3.9',
url='https://github.com/hampsterx/ya-ecs-ctl',
author='Tim van der Hulst',
author_email='[email protected]',
license='Apache2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2'
],
packages=['ya_ecs_ctl'],
install_requires=[
'click>=6.6',
'boto3>=1.30,<2',
'terminaltables==3.1.0',
'humanize==0.5.1',
'EasySettings==2.1.0',
'prompt-toolkit==2.0.4',
'PyYAML>=6.0.1',
'colored==1.3.5',
'Jinja2>=2.8',
],
entry_points={
'console_scripts': [
'ecs=ya_ecs_ctl.main:main'
]
}
)