-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 862 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Jose Armesto
"""
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='dredd',
version='1.0.0',
author='Jose Armesto',
author_email='[email protected]',
packages=find_packages('.'),
include_package_data=True,
url='https://github.com/fiunchinho/dredd',
description='Terminate healthy instances containing unhealthy services',
long_description=long_description,
license='GPLv2',
install_requires=open('requirements.txt').read().split(),
entry_points={
"console_scripts": ["dredd = dredd.cli:main"]
},
classifiers=[],
keywords='eureka consul aws'
)