forked from DavidMuller/aws-requests-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (17 loc) · 741 Bytes
/
setup.py
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='qcloud-requests-auth',
version='0.0.1',
author='Daven DU',
author_email='[email protected]',
packages=['qcloud_requests_auth'],
url='https://github.com/davendu/qcloud-requests-auth',
description=' Tencent cloud signature version 3 (TC3-HMAC-SHA256) signing process for the python requests module. Forked from DavidMuller/aws-requests-auth',
long_description='See https://github.com/davendu/qcloud-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',
]
)