Skip to content

Commit

Permalink
Add more metadata to the Python package
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Walter <[email protected]>
  • Loading branch information
twwd committed Sep 11, 2024
1 parent 3701748 commit 85ca205
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ version = "0.0.0"
description = "Keycloak auditor"
authors = ["Max Maass <[email protected]>", "Tim Walter <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://iteratec.github.io/kcwarden/"
repository = "https://github.com/iteratec/kcwarden"
documentation = "https://iteratec.github.io/kcwarden/"
keywords = ["keycloak", "security-scanner", "oauth2", "oidc"]
classifiers = ["License :: OSI Approved :: Apache Software License", "Topic :: Security", "Topic :: Software Development :: Testing", "Operating System :: OS Independent"]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/iteratec/kcwarden/issues"
"Sponsor" = "https://www.iteratec.com/"

[tool.poetry.dependencies]
python = "^3.11"
Expand Down Expand Up @@ -47,12 +57,12 @@ indent-width = 4
[tool.ruff.lint]
select = ["E", "F", "C90", "N", "RUF", "PL"]
ignore = [
"E501", # line length
"E501", # line length
"PLR2004", # Magic value used in comparison
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"PLR0913", # Too many arguments in function definition
"PLR0912", # Too many branches
"C901", # Too complex
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"PLR0913", # Too many arguments in function definition
"PLR0912", # Too many branches
"C901", # Too complex
]

[tool.ruff.format]
Expand Down

0 comments on commit 85ca205

Please sign in to comment.