-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (96 loc) · 2.38 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (96 loc) · 2.38 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["maturin>=1.13,<2"]
build-backend = "maturin"
[project]
name = "oxyjwt"
version = "0.7.0"
description = "High-performance Python JWT/JWS library backed by a Rust core (PyJWT drop-in replacement)."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"orjson>=3.9",
]
license = "MIT"
authors = [
{ name = "OxyJWT contributors" },
]
keywords = [
"jwt",
"jws",
"json-web-token",
"rust",
"pyo3",
"maturin",
"pyjwt",
"authentication",
"security",
"cryptography",
"fastapi",
"high-performance",
"orjson",
"jwks",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Topic :: Security",
"Typing :: Typed",
]
[project.optional-dependencies]
dev = [
"authlib>=1.3",
"cryptography>=42",
"mypy>=1.8",
"pyjwt>=2.8",
"pytest>=8",
"pytest-cov>=5",
"python-jose>=3.3",
]
bench = [
"authlib>=1.3",
"cryptography>=42",
"pyjwt>=2.8",
"python-jose>=3.3",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"pymdown-extensions>=10.8",
]
[project.urls]
Homepage = "https://oxyjwt.queryahub.com/"
Documentation = "https://oxyjwt.queryahub.com/"
Repository = "https://github.com/QueryaHub/OxyJWT"
Issues = "https://github.com/QueryaHub/OxyJWT/issues"
Changelog = "https://github.com/QueryaHub/OxyJWT/blob/main/CHANGELOG.md"
[tool.mypy]
python_version = "3.10"
mypy_path = "python"
files = ["python/oxyjwt", "tests/typing"]
warn_unused_ignores = true
warn_redundant_casts = true
show_error_codes = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["python"]
markers = [
"benchmark: throughput comparison (slower; set OXYJWT_BENCHMARK=1 for extended)",
"security: 0.4.0 security regression contract tests",
]
[tool.maturin]
manifest-path = "rust/Cargo.toml"
python-source = "python"
module-name = "oxyjwt._oxyjwt"
bindings = "pyo3"
strip = true
# PEP 639 / PyPI: METADATA may reference License-File: LICENSE; the file must
# exist inside the sdist. Maturin can omit root LICENSE from the tarball otherwise.
include = [{ path = "LICENSE", format = "sdist" }]