forked from spreaker/aws-cloud-unmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.35 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
import sys
from setuptools import setup
# Version
version = "1.1.1"
# Requires Python 3
if sys.version_info.major < 3:
raise RuntimeError('Installing requires Python 3 or newer')
# Read the long description from README.md
with open('README.md') as file:
long_description = file.read()
setup(
name = 'aws-cloud-unmap',
packages = ['cloudunmap'],
version = version,
description = 'Remove terminated EC2 instances from AWS CloudMap service',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'Marco Pracucci',
author_email = '[email protected]',
url = 'https://github.com/spreaker/aws-cloud-unmap',
download_url = f'https://github.com/spreaker/aws-cloud-unmap/archive/{version}.tar.gz',
keywords = ['aws', 'cloud map'],
classifiers = [],
python_requires = ' >= 3',
install_requires = ["boto3==1.9.123", "python-json-logger==0.1.10", "prometheus_client==0.6.0"],
extras_require = {
'dev': [
'flake8==3.7.7',
'twine==1.13.0'
]
},
entry_points = {
'console_scripts': [
'aws-cloud-unmap=cloudunmap.cli:run',
]
}
)