forked from puiterwijk/flask-oidc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (56 loc) · 2.04 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os.path
import io
import sys
from setuptools import setup
# This check is to make sure we checkout docs/_themes before running sdist
if not os.path.exists("./docs/_themes/README"):
print('Please make sure you have docs/_themes checked out while running setup.py!')
if os.path.exists('.git'):
print('You seem to be using a git checkout, please execute the following commands to get the docs/_themes directory:')
print(' - git submodule init')
print(' - git submodule update')
else:
print('You seem to be using a release. Please use the release tarball from PyPI instead of the archive from GitHub')
sys.exit(1)
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst')) as f:
readme = f.read()
setup(
name='flask-oidc',
description='OpenID Connect extension for Flask',
long_description=readme,
url='https://github.com/puiterwijk/flask-oidc',
author='Erica Ehrhardt, Patrick Uiterwijk',
author_email='patrick@puiterwijk.org',
version='1.4.0',
packages=[
'flask_oidc',
],
install_requires=[
'Flask',
'itsdangerous',
'oauth2client',
'six',
],
tests_require=['nose', 'mock'],
entry_points={
'console_scripts': ['oidc-register=flask_oidc.registration_util:main'],
},
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)