forked from fabfuel/ecs-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (59 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
"""
Simplify AWS ECS deployments
"""
from setuptools import find_packages, setup
from ecs_deploy import VERSION
def readme():
with open('README.rst') as f:
return f.read()
dependencies = [
'click<7.0.0',
'click-log==0.3.2',
'botocore>=1.17.47',
'boto3>=1.14.47',
'future',
'requests',
'dictdiffer==0.8.0',
]
setup(
name='ecs-deploy',
version=VERSION,
url='https://github.com/fabfuel/ecs-deploy',
download_url='https://github.com/fabfuel/ecs-deploy/archive/%s.tar.gz' % VERSION,
license='BSD-3-Clause',
author='Fabian Fuelling',
author_email='pypi@fabfuel.de',
description='Powerful CLI tool to simplify Amazon ECS deployments, '
'rollbacks & scaling',
long_description=readme(),
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=dependencies,
entry_points={
'console_scripts': [
'ecs = ecs_deploy.cli:ecs',
],
},
tests_require=[
'mock',
'pytest',
'pytest-flake8',
'pytest-mock',
'freezegun',
'coverage'
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)