forked from vimalloc/flask-jwt-extended
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 1.43 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
"""
Quart-JWT-Extended
------------------
Quart-Login provides jwt endpoint protection for Quart.
"""
from setuptools import setup
import versioneer
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="Quart-JWT-Extended",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/greenape/quart-jwt-extended",
license="MIT",
author="Jonathan Gray",
author_email="[email protected]",
description="Extended JWT integration with Quart",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["quart", "jwt", "json web token"],
packages=["quart_jwt_extended"],
zip_safe=False,
platforms="any",
install_requires=[
"Werkzeug>=2.2.0",
"Quart>=0.18",
"PyJWT>2.2.0",
"six",
],
python_requires=">=3.7",
extras_require={"asymmetric_crypto": ["cryptography >= 35.0.0"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)