-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
executable file
·34 lines (29 loc) · 1020 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
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.3.0'
with open('README.md') as f:
long_description = f.read()
setup(
name='requests-oauth2',
version=version,
description='OAuth2 support to Python-Requests HTTP library.',
long_description=long_description,
author='Miguel Araujo',
author_email='[email protected]',
url='http://github.com/maraujop/requests-oauth2',
packages=find_packages(),
install_requires=['requests', 'six'],
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', 'OAuth2'],
zip_safe=False,
)