1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
from setuptools import setup
setup(
name='aws-requests-auth',
version='0.4.3',
author='David Muller',
author_email='davehmuller@gmail.com',
packages=['aws_requests_auth'],
url='https://github.com/davidmuller/aws-requests-auth',
description='AWS signature version 4 signing process for the python requests module',
long_description='See https://github.com/davidmuller/aws-requests-auth for installation and usage instructions.',
install_requires=['requests>=0.14.0'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
)
|