forked from mpdavis/python-jose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.11 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
[build-system]
requires = ["setuptools>=39.2.0", "wheel>=0.29.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-jose-speedup"
version = "0.1.0"
description = "JOSE implementation in Python with performance optimizations"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Michael Davis" }
]
keywords = ["jose", "jws", "jwe", "jwt", "json", "web", "token", "security", "signing"]
dynamic = ["classifiers", "dependencies"]
[project.optional-dependencies]
speedups = ["pybase64"]
cryptography = ["cryptography>=3.2.0"]
pycryptodome = ["pycryptodome>=3.3.1"]
[project.urls]
Documentation = "https://python-jose.readthedocs.io/en/latest/"
Source = "https://github.com/mpdavis/python-jose/"
Tracker = "https://github.com/mpdavis/python-jose/issues/"
Changelog = "https://github.com/mpdavis/python-jose/blob/master/CHANGELOG.md"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.black]
line-length = 120
target-version = ["py311", "py312", "py313"]