-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (42 loc) · 941 Bytes
/
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
49
50
51
[tool.poetry]
name = "azdocgen"
version = "0.1.8"
description = "A simple Azure Pipeline documentation generator"
authors = ["gianfa <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [
{ include = "azdocgen" }
]
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^6.0.2"
click = "^8.1.7"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-mock = "^3.14.0"
black = "^24.10.0"
flake8 = "^7.1.1"
mypy = "^1.13.0"
twine = "^5.1.1"
isort = "^5.13.2"
pre-commit = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
[tool.flake8]
max-line-length = 88
exclude = ["tests/*", ".venv/*"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"tests"
]
[tool.poetry.extras]
docs = ["mermaid-cli"]
[tool.poetry.scripts]
azdocgen = "azdocgen.cli:cli"