forked from marko-bast/aws-emr-cost-calculator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
25 lines (24 loc) · 920 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
# coding=utf-8
import setuptools
setuptools.setup(
name='aws-emr-cost-calculator2',
version='0.1.6',
scripts=['aws-emr-cost-calculator2'],
author="Mauro Pelucchi from an idea of Marko Baštovanović",
author_email="mauro.pelucchi@gmail.com",
description="Utility package to calculate cost of an AWS EMR cluster",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/mauropelucchi/aws-emr-cost-calculator",
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['requests[security]>=2.18.3',
'retrying',
'boto3>=1.9',
'docopt']
)