mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Bumps [pylint](https://github.com/PyCQA/pylint) from 2.15.0 to 2.15.2. - [Release notes](https://github.com/PyCQA/pylint/releases) - [Commits](https://github.com/PyCQA/pylint/compare/v2.15.0...v2.15.2) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
623 B
TOML
32 lines
623 B
TOML
[tool.poetry]
|
|
name = "kanidmradius"
|
|
version = "0.0.1"
|
|
description = "FreeRADIUS Module for Kanidm Authentication"
|
|
authors = [
|
|
"James Hodgkinson <james@terminaloutcomes.com>"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
requests = "^2.28.1"
|
|
toml = "^0.10.2"
|
|
aiohttp = "^3.8.1"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pylint = "^2.15.2"
|
|
mypy = "^0.971"
|
|
types-requests = "^2.28.10"
|
|
pytest = "^7.1.3"
|
|
types-toml = "^0.10.8"
|
|
pytest-asyncio = "^0.19.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pylint.MASTER]
|
|
disable="W0511"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|