2022-04-17 01:08:53 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "kanidmradius"
|
|
|
|
version = "0.0.1"
|
2022-06-20 12:16:55 +02:00
|
|
|
description = "FreeRADIUS Module for Kanidm Authentication"
|
|
|
|
authors = [
|
|
|
|
"James Hodgkinson <james@terminaloutcomes.com>"
|
|
|
|
]
|
2022-04-17 01:08:53 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-06-20 12:16:55 +02:00
|
|
|
python = "^3.8"
|
2022-07-03 23:26:59 +02:00
|
|
|
requests = "^2.28.1"
|
2022-06-20 12:16:55 +02:00
|
|
|
toml = "^0.10.2"
|
|
|
|
aiohttp = "^3.8.1"
|
2022-04-17 01:08:53 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-07-18 11:33:56 +02:00
|
|
|
pylint = "^2.14.5"
|
2022-06-20 12:57:32 +02:00
|
|
|
mypy = "^0.961"
|
2022-07-18 05:12:02 +02:00
|
|
|
types-requests = "^2.28.1"
|
2022-06-20 12:16:55 +02:00
|
|
|
pytest = "^7.1.2"
|
2022-07-18 11:06:11 +02:00
|
|
|
types-toml = "^0.10.8"
|
2022-06-20 12:16:55 +02:00
|
|
|
pytest-asyncio = "^0.18.3"
|
2022-04-17 01:08:53 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-06-20 12:16:55 +02:00
|
|
|
|
|
|
|
[tool.pylint.MASTER]
|
|
|
|
disable="W0511"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
asyncio_mode = "auto"
|