-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 937 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
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='aws_monitor',
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=find_packages(),
install_requires=[
'boto3',
'matplotlib'
],
entry_points={
'console_scripts': [
'aws_monitor=aws_monitor:main',
],
},
author='Ahmed Belhaj',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
description='A package for monitoring AWS resources',
url='https://github.com/Theemiss/aws_monitor',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
)