-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (41 loc) · 1.29 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
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='flask-oauth2-validation',
version='0.1.3',
author='Henrik Sachse',
author_email='henrik@0x7d7b.net',
description=(
'A Flask decorator which adds local and remote OAuth2 '
'validation for self-encoded JWT based Bearer access tokens.'
),
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/0x7d7b/flask-oauth2-validation',
project_urls={
'Bug Tracker':
'https://github.com/0x7d7b/flask-oauth2-validation/issues',
'Source':
'https://github.com/0x7d7b/flask-oauth2-validation',
'Test Coverage':
'https://codecov.io/gh/0x7d7b/flask-oauth2-validation'
},
classifiers=[
'Programming Language :: Python :: 3',
'Framework :: Flask',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
package_dir={'': 'src'},
packages=find_packages('src'),
python_requires='>=3.9',
include_package_data=True,
install_requires=[
'jwt',
'requests',
'flask-executor',
'flask'
]
)