forked from jazzband/djangorestframework-simplejwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·87 lines (82 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
extras_require = {
"test": [
"cryptography",
"pytest-cov",
"pytest-django",
"pytest-xdist",
"pytest",
"tox",
],
"lint": [
"flake8",
"pep8",
"isort",
],
"doc": [
"Sphinx>=1.6.5,<2",
"sphinx_rtd_theme>=0.1.9",
],
"dev": [
"pytest-watch",
"wheel",
"twine",
"ipython",
],
"python-jose": [
"python-jose==3.3.0",
],
"crypto": [
"cryptography>=3.3.1",
],
}
extras_require["dev"] = (
extras_require["dev"]
+ extras_require["test"]
+ extras_require["lint"]
+ extras_require["doc"]
+ extras_require["python-jose"]
)
setup(
name="djangorestframework_simplejwt",
use_scm_version={"version_scheme": "post-release"},
setup_requires=["setuptools_scm"],
url="https://github.com/jazzband/djangorestframework-simplejwt",
license="MIT",
description="A minimal JSON Web Token authentication plugin for Django REST Framework",
long_description=Path("README.rst").read_text(encoding="utf-8"),
author="David Sanders",
author_email="[email protected]",
install_requires=[
"django>=3.2",
"djangorestframework>=3.10",
"pyjwt>=1.7.1,<3",
],
python_requires=">=3.7",
extras_require=extras_require,
packages=find_packages(exclude=["tests", "tests.*", "licenses", "requirements"]),
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Internet :: WWW/HTTP",
],
)