This repository has been archived by the owner on Apr 17, 2020. It is now read-only.
forked from jmenga/requests-aws-sign
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·35 lines (35 loc) · 1.46 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
32
33
34
35
from setuptools import setup # type: ignore
setup(
author_email="[email protected], [email protected]",
author="Mateus Amin, Bentron Drew",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description=
"An AWS IAM authentication package for Requests. Supported services: API Gateway v1",
install_requires=["botocore>=1.14.0", "requests>=2.21.0"],
keywords=
"AWS IAM authentication auth AWS amazon API Gateway v1 Requests Signature v4",
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
name="requests_aws_iam_auth",
packages=['requests_aws_iam_auth'],
project_urls={
"Bug Tracker":
"https://github.com/mateusamin/requests-aws-iam-auth/issues",
"Documentation":
"https://github.com/MateusAmin/requests-aws-iam-auth/blob/master/README.md",
"Source Code": "https://github.com/mateusamin/requests-aws-iam-auth/",
},
python_requires='>=3.7.0',
url="https://github.com/mateusamin/requests-aws-iam-auth/",
version="0.2.0",
)