-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (39 loc) · 1.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "ssh-zone-handler"
version = "0.3.2"
description = "SSH commands to provide Secondary DNS self-service."
readme = "README.md"
license = "MIT"
authors = ["Andreas Olsson <[email protected]>"]
repository = "https://github.com/andreaso/ssh-zone-handler"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^1.10.7"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = ">=23.3,<25.0"
mypy = "^1.2.0"
pylint = "^2.17.2"
bandit = {extras = ["toml"], version = "^1.7.5"}
pytest = "^7.2.2"
pytest-mock = "^3.10.0"
types-pyyaml = "^6.0.12.9"
[tool.poetry.scripts]
szh-sudoers = "ssh_zone_handler.cli:sudoers"
szh-wrapper = "ssh_zone_handler.cli:wrapper"
[tool.isort]
profile = "black"
[tool.pylint.'MAIN']
extension-pkg-allow-list = "pydantic"
disable="too-few-public-methods"
[tool.bandit]
exclude_dirs = [".venv"]
skips = ["B404", "B603"]
[tool.bandit.assert_used]
skips = ["*/test_*.py", "*/run-integration-tests"]
[tool.pytest.ini_options]
log_format = "%(message)s"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"