-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
setup.py
59 lines (53 loc) · 2.01 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
import io
import re
from setuptools import setup
with io.open("flask_jwt_extended/__init__.py", encoding="utf-8") as f:
version = re.search(r"__version__ = \"(.+)\"", f.read()).group(1)
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="Flask-JWT-Extended",
version=version,
url="https://github.com/vimalloc/flask-jwt-extended",
license="MIT",
author="Lily Acadia Gilbert",
author_email="[email protected]",
description="Extended JWT integration with Flask",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["flask", "jwt", "json web token"],
packages=["flask_jwt_extended"],
package_data={
"flask_jwt_extended": ["py.typed"],
},
zip_safe=False,
platforms="any",
install_requires=[
"Werkzeug>=0.14", # Needed for SameSite cookie functionality
"Flask>=2.0,<4.0",
"PyJWT>=2.0,<3.0",
],
extras_require={"asymmetric_crypto": ["cryptography>=3.3.1"]},
python_requires=">=3.9,<4",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)