-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
64 lines (54 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "salt-tower"
version = "1.12.0"
description = "A Flexible External Salt Pillar Module"
authors = [{ name = "Jan Graichen", email = "[email protected]" }]
dependencies = ["salt"]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: System :: Systems Administration",
]
[project.urls]
homepage = "https://github.com/jgraichen/salt-tower"
[project.entry-points."salt.loader"]
pillar_dirs = "salt_tower.loader:pillar_dirs"
render_dirs = "salt_tower.loader:renderers_dirs"
[project.optional-dependencies]
test = ["pylint==3.3.2", "pytest==8.3.4"]
docs = [
"mike==2.1.3",
"mkdocs-awesome-pages-plugin==2.9.3",
"mkdocs-git-revision-date-plugin==0.3.2",
'mkdocs-material==9.5.49',
"setuptools", # required by mike
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
include = ["salt_tower", "test"]
exclude = ["test/fixtures"]
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.ruff]
builtins = ["__grains__", "__opts__", "__pillar__", "__salt__"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.uv]
dev-dependencies = [
"mypy==1.13.0",
"pylint==3.3.2",
"pyright>=1.1.356",
"pytest==8.3.4",
"ruff==0.8.4",
"tox==4.23.2",
]