forked from concurrencylabs/aws-pricing-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (14 loc) · 754 Bytes
/
setup.py
File metadata and controls
17 lines (14 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup
setup(name='awspricecalculator',
version='0.1',
description='AWS Price List calculations',
url='https://github.com/ConcurrenyLabs/aws-pricing-tools/tree/master/awspricecalculator',
author='Concurrency Labs',
author_email='github@concurrencylabs.com',
license='GNU',
packages=['awspricecalculator','awspricecalculator.common',
'awspricecalculator.awslambda','awspricecalculator.ec2','awspricecalculator.rds', 'awspricecalculator.emr',
'awspricecalculator.redshift', 'awspricecalculator.s3','awspricecalculator.dynamodb',
'awspricecalculator.kinesis', 'awspricecalculator.datatransfer'],
include_package_data=True,
zip_safe=False)