forked from maraujop/requests-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 988 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, find_packages
version = '0.2.0'
setup(
name='requests-oauth2',
version=version,
description='Open Authentication 2 support to Python-requests HTTP library.',
long_description=open('README.md').read(),
author='Miguel Araujo',
author_email='[email protected]',
url='http://github.com/maraujop/requests-oauth2',
packages=find_packages(),
install_requires=['requests', ],
license='BSD',
classifiers=(
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'Programming Language :: Python',
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
),
keywords=['requests', 'python-requests', 'OAuth', 'open authentication'],
zip_safe=False,
)