forked from DatatracCorporation/aws-requests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 719 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 719 Bytes
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
from setuptools import setup, find_packages
import sys
install_requires = [
'requests',
'boto3'
]
with open('README.rst') as f:
readme = f.read()
setup(
name='awsrequests',
version='0.0.11',
packages=['awsrequests'],
url='https://github.com/djcrabhat/aws-requests',
license='MIT License',
author='ClearDATA',
author_email='[email protected]',
description='For making signed requests to AWS API Gateway endpoints',
install_requires=install_requires,
#download_url='https://github.com/djcrabhat/awsrequests/tarball/0.0.4',
keywords=['AWS API Gateway signing', 'API Gateway signing', 'AWS API Gateway requests', 'API Gateway requests'],
classifiers=[],
)