-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more metadata to the Python package
Signed-off-by: Tim Walter <[email protected]>
- Loading branch information
Showing
1 changed file
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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] | ||
|