-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (29 loc) · 1.25 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
from setuptools import setup, find_packages
setup(
name='spot-price-reporter',
description='Fetches the most recent aws spot prices, plots them, and sends them to you',
url='https://github.com/EntilZha/spot-price-reporter',
author='Pedro Rodriguez',
author_email='[email protected]',
maintainer='Pedro Rodriguez',
maintainer_email='[email protected]',
license='Apache License 2.0',
keywords='aws spot price plot slack email',
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'test']),
version='0.0.0',
install_requires=['pandas', 'seaborn', 'click', 'slacker', 'matplotlib'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points={
'console_scripts': ['aws_spot_price_history = spot_reporter.cli:cli']
}
)