forked from IndominusByte/fastapi-jwt-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (45 loc) · 1.29 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core>=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "fastapi_jwt_auth"
dist-name = "fastapi-jwt-auth"
author = "Nyoman Pradipta Dewantara"
author-email = "[email protected]"
home-page = "https://github.com/IndominusByte/fastapi-jwt-auth"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
requires = [
"fastapi>=0.61.0",
"PyJWT>=1.7.1,<2.0.0"
]
description-file = "README.md"
requires-python = ">=3.6"
[tool.flit.metadata.urls]
Documentation = "https://indominusbyte.github.io/fastapi-jwt-auth/"
[tool.flit.metadata.requires-extra]
test = [
"pytest==6.0.1",
"pytest-cov==2.10.0",
"coveralls==2.1.2"
]
doc = [
"mkdocs>=1.1.2,<2.0.0",
"mkdocs-material>=5.5.0,<6.0.0",
"markdown-include>=0.5.1,<0.6.0"
]
dev = [
"cryptography>=2.6,<4.0.0",
"uvicorn>=0.11.5,<0.12.0"
]
asymmetric = ["cryptography>=2.6,<4.0.0"]