forked from jgraichen/salt-tower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.35 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
[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.8.2,<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.1.0", "pytest~=8.0.0"]
docs = [
"mike~=2.0.0",
"mkdocs-awesome-pages-plugin~=2.9.1",
"mkdocs-git-revision-date-plugin~=0.3.2",
'mkdocs-material~=9.5.0',
"setuptools", # required by mike
]
[build-system]
requires = ["pdm-pep517>=1.0"]
build-backend = "pdm.pep517.api"
[tool.black]
target_version = ["py36", "py37", "py38"]
[tool.pdm.dev-dependencies]
dev = [
"black~=24.2.0",
"mypy~=1.3",
"pylint~=3.1.0",
"pytest~=8.0.0",
"tox~=4.13.0",
]
[tool.pytest.ini_options]
testpaths = ["test"]