-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.1 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
[tool.poetry]
name = "aar_doc"
version = "2.0.2"
description = "A tool for generating docs for Ansible roles"
readme = "README.md"
authors = ["Miika Kankare <[email protected]>", "Sebastian Gumprich <[email protected]>"]
license = "MIT"
homepage = "https://github.com/telekom-mms/aar_doc/"
repository = "https://github.com/telekom-mms/aar_doc/"
documentation = "https://github.com/telekom-mms/aar_doc/"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.3"
Jinja2 = "^3.1.2"
typer = "^0.15.0"
ruamel-yaml = "^0.18.6"
[tool.poetry.dev-dependencies]
black = "^24.0.0"
mypy = "^1.0.0"
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
isort = "^5.10.1"
[tool.poetry.scripts]
aar-doc = "aar_doc.cli:app"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
pre-commit = "^4.0.0"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "."
[tool.isort]
profile = "black"
[tool.pylint]
disable = ["too-many-arguments","too-many-positional-arguments","too-many-nested-blocks","too-many-branches"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"