forked from pallets-eco/flask-jwt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·41 lines (32 loc) · 1.17 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
#!/usr/bin/env python3
# Copyright 2014 Matthew Wright. All rights reserved.
# Copyright 2019 Yannick Kirschen. All rights reserved.
# Copyright 2020 Matz Radloff
# Use of this source code is governed by the GNU-GPL
# license that can be found in the LICENSE file.
# Forked from https://github.com/mattupstate/flask-jwt
from setuptools import setup, find_packages
# from flask_jwt_next import __version__
def long_description():
with open('README.md') as f:
return f.read()
setup(
name='flask-jwt-next',
version='1.0.2',
license='MIT',
url='https://github.com/timesqueezer/flask-jwt-next',
author='Matz Radloff',
author_email='matzradloff@gmail.com',
description='JWT token authentication for Flask apps.',
long_description_content_type='text/markdown',
long_description=long_description(),
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Natural Language :: English',
]
)