forked from nathants/py-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 885 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
import setuptools
setuptools.setup(
version="0.0.1",
license='mit',
name="py-aws",
author='nathan todd-stone',
author_email='me@nathants.com',
url='http://github.com/nathants/py-aws',
packages=['aws'],
install_requires=['boto3 >1, <2',
'pytz',
'tzlocal',
'requests >2, <3',
'awscli >1, <2',
'pager >3, <4'],
entry_points={'console_scripts': ['ec2 = aws.ec2:main',
's3 = aws.s3:main',
's3-stubbed = aws.s3_stubbed:main',
'elb = aws.elb:main',
'emr = aws.emr:main',
'ddb = aws.ddb:main']},
scripts = ['bin/stub_s3.sh'],
description='aws',
)