-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (47 loc) · 1.48 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
55
56
57
58
59
[tool.poetry]
name = "verify-oidc-identity"
version = "0.4.10"
description = "Verify OIDC JWT identity tokens using OIDC discovery"
authors = [ "Rich Wareham <rich.verify-oidc-identity@richwareham.com>" ]
license = "MIT"
readme = "README.md"
[[tool.poetry.packages]]
include = "federatedidentity"
[tool.poetry.urls]
Homepage = "https://github.com/rjw57/verify-oidc-identity"
Repository = "https://github.com/rjw57/verify-oidc-identity.git"
Issues = "https://github.com/rjw57/verify-oidc-identity/issues"
Changelog = "https://github.com/rjw57/verify-oidc-identity/blob/main/CHANGELOG.md"
Documentation = "https://rjw57.github.io/verify-oidc-identity"
[tool.poetry.dependencies]
python = "^3.10"
jwcrypto = "^1.5.6"
validators = "^0.34.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
faker = "^33.0.0"
responses = "^0.25.3"
pytest-responses = "^0.5.1"
pytest-asyncio = "^0.25.0"
[tool.poetry.group.doc.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.44"
black = "^24.10.0"
[tool.poetry.group.doc.dependencies.mkdocstrings]
extras = [ "python" ]
version = "^0.27.0"
[tool.pytest.ini_options]
addopts = "--cov --cov-report term --cov-report html"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
ignore_missing_imports = true
[tool.black]
line-length = 99
[tool.coverage.run]
omit = [ "*/test/*", "*/tests/*" ]
[tool.isort]
profile = "black"
[build-system]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"