mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Bumps the all group in /pykanidm with 4 updates: [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings), [mkdocstrings-python](https://github.com/mkdocstrings/python) and [ruff](https://github.com/astral-sh/ruff). Updates `mkdocs-material` from 9.5.16 to 9.5.17 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.5.16...9.5.17) Updates `mkdocstrings` from 0.24.1 to 0.24.3 - [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases) - [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md) - [Commits](https://github.com/mkdocstrings/mkdocstrings/compare/0.24.1...0.24.3) Updates `mkdocstrings-python` from 1.9.0 to 1.9.2 - [Release notes](https://github.com/mkdocstrings/python/releases) - [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md) - [Commits](https://github.com/mkdocstrings/python/compare/1.9.0...1.9.2) Updates `ruff` from 0.3.4 to 0.3.5 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.3.4...v0.3.5) --- updated-dependencies: - dependency-name: mkdocs-material dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: mkdocstrings dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: mkdocstrings-python dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
84 lines
1.9 KiB
TOML
84 lines
1.9 KiB
TOML
[tool.poetry]
|
|
name = "kanidm"
|
|
version = "1.0.0"
|
|
description = "Kanidm client library"
|
|
license = "MPL-2.0"
|
|
|
|
authors = ["James Hodgkinson <james@terminaloutcomes.com>"]
|
|
|
|
readme = "README.md"
|
|
repository = "https://github.com/kanidm/kanidm"
|
|
homepage = "https://kanidm.com/"
|
|
|
|
packages = [{ include = "kanidm" }]
|
|
|
|
keywords = ["kanidm", "idm", "api"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
toml = "^0.10.2"
|
|
pydantic = ">=2.0.0,<3.0.0"
|
|
aiohttp = "^3.8.1"
|
|
Authlib = "^1.2.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mypy = "^1.9"
|
|
pytest = "^8.1.1"
|
|
types-toml = "^0.10.8"
|
|
pylint-pydantic = "^0.3.2"
|
|
coverage = "^7.4.4"
|
|
pylint-pytest = "^1.1.7"
|
|
pytest-asyncio = "^0.23.6"
|
|
pytest-mock = "^3.14.0"
|
|
pytest-aiohttp = "^1.0.5"
|
|
black = "^24.3.0"
|
|
mkdocs = "^1.5.3"
|
|
mkdocs-material = "^9.5.17"
|
|
mkdocstrings = "^0.24.3"
|
|
mkdocstrings-python = "^1.9.2"
|
|
pook = "^1.4.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = ">=0.0.230,<0.3.6"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pylint.MASTER]
|
|
max-line-length = 150
|
|
disable = "W0511,raise-missing-from"
|
|
extension-pkg-allow-list = "pydantic"
|
|
# https://github.com/samuelcolvin/pydantic/issues/1961#issuecomment-759522422
|
|
load-plugins = "pylint_pydantic,pylint_pytest"
|
|
|
|
[tool.ruff]
|
|
line-length = 150
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/*.py" = [
|
|
"F401", # unused import, reused fixtures across all tests
|
|
"F811", # pytest fixtures
|
|
]
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
markers = [
|
|
"network: Tests that require network access and a working backend server",
|
|
"interactive: Requires specific config and a working backend server",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
source = ["kanidm"]
|
|
omit = ["tests"]
|
|
|
|
[tool.mypy]
|
|
plugins = "pydantic.mypy"
|