-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (34 loc) · 1.02 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
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project]
name = "salt-template"
version = "1.3.0"
authors = [{ name = "Jan Graichen", email = "jgraichen@altimos.de" }]
license = { text = "MIT" }
requires-python = ">=3.10"
readme = "README.md"
dependencies = ["salt"]
[project.optional-dependencies]
test = ["pylint==3.3.2", "pytest==8.3.4"]
[tool.pdm.dev-dependencies]
dev = ["pylint==3.3.2", "pytest==8.3.4", "ruff==0.8.3", "tox==4.23.2"]
[tool.pdm.resolution.overrides]
pyzmq = "~=25.1" # 25.0.2 does not compile on 24.04 anymore
[tool.pylint.basic]
good-names = "a,b,fd,k,v"
[tool.pylint.variables]
additional-builtins = "__salt__,__opts__,__grains__,__pillar__"
[tool.pylint.similarities]
min-similarity-lines = 6
ignore-imports = true
[tool.pyright]
include = ["_modules", "_templates", "test"]
[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"]