forked from tgs/requests-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1006 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
27
28
29
30
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='requests-jwt',
version='0.5.3',
url='https://github.com/tgs/requests-jwt',
py_modules=['requests_jwt'],
install_requires=[ 'requests', 'PyJWT' ],
tests_require=['httpretty'],
test_suite='tests.suite',
provides=[ 'requests_jwt' ],
author='Thomas Grenfell Smith',
author_email='[email protected]',
description='This package allows for HTTP JSON Web Token (JWT) authentication using the requests library.',
long_description=open('README.rst').read(),
license='ISC',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
'License :: OSI Approved :: ISC License (ISCL)',
],
)