-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.01 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='ecs-consul-reg',
description='AWS ECS Consul Registration',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.1.3',
url='https://github.com/hampsterx/ecs-consul-reg',
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=['ecs_consul_reg'],
install_requires=[
'PyYAML',
'python-consul==1.1.0',
'docker==3.5.0',
'click==6.7',
'simple-json-log-formatter==0.5.3',
],
entry_points={
'console_scripts': [
'ecs-consul-reg=ecs_consul_reg.main:main'
]
}
)