-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.17 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
[project]
name = "keycloak-jwt-checker"
version = "1.0.1"
description = "A little tool for debugging claims contained in JSON Web Tokens (JWT) issued by Keycloak confidential clients"
authors = [
{name = "Max Pfeiffer",email = "[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"python-keycloak (>=5.1.2,<6.0.0)",
"click (>=8.1.8,<9.0.0)",
"pyjwt (>=2.10.1,<3.0.0)"
]
[project.urls]
homepage = "https://github.com/max-pfeiffer/keycloak-jwt-checker"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.1.0"
ruff = "^0.9.3"
pytest = "^8.3.4"
testcontainers = "^4.9.1"
coverage = "^7.6.10"
pytest-cov = "^6.0.0"
[tool.poetry.scripts]
keycloak-jwt-checker = 'keycloak_jwt_checker:cli'
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"D", # pydocstyle
"UP", # pyupgrade
"ASYNC", # flake8-async
"RUF", # Ruff-specific rules
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.pytest.ini_options]
testpaths = [
"tests",
]