-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (28 loc) · 934 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
from distutils.core import setup
setup(
name='Flask-of-Oil',
packages=['flask_of_oil'],
version='1.2.2',
license='Apache Software License',
description='Flask OAuth Filter - an OAuth Interceptor Logic',
long_description=open('README.rst').read(),
author='Curity AB',
author_email='info@curity.io',
url='https://github.com/curity/flask-of-oil',
keywords=['oauth', 'flask', 'introspection', 'access token', 'jwt', 'opaque'],
install_requires=[
'requests',
'cachelib',
'Flask',
'pyjwkest'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Flask',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: Security'
],
)