-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
35 lines (33 loc) · 845 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
33
34
35
from pathlib import Path
from setuptools import setup, find_packages
readme_file = Path(__file__).parent.resolve() / 'README.md'
long_description = readme_file.read_text()
setup(
name='aws-quota-checker',
version='1.12.0',
description='A CLI tool that checks your AWS quota utilization',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'boto3',
'click',
'tabulate',
'cachetools'
],
extras_require={
'dev':{
'autopep8',
'pylint',
'keepachangelog',
'wheel'
},
'prometheus':{
'prometheus-client'
}
},
entry_points='''
[console_scripts]
aws-quota-checker=aws_quota.cli:cli
''',
)