-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 808 Bytes
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
[project]
name = "infrahub-docs"
version = "0.2.0"
description = "Documentation aggregation site for Infrahub projects"
readme = "README.md"
authors = [{ name = "OpsMill", email = "info@opsmill.com" }]
requires-python = ">=3.10,<3.13"
dependencies = [
"invoke>=2.2.1,<3.0.0",
"jsonschema==4.26.0",
]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"ruff>=0.14.10",
"yamllint>=1.37.1",
]
[tool.ruff]
line-length = 120
exclude = ["infrahub/", ".venv/", "docs/", "models/", "scripts/"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.mypy]
pretty = true
ignore_missing_imports = true
disallow_untyped_defs = true
warn_return_any = true
warn_unused_ignores = false
exclude = ["infrahub/", "docs/", "models/", "scripts/"]