-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 976 Bytes
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 976 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "prism-ansible"
version = "0.1.0"
description = "Scan an Ansible role for Jinja2 default() usages and generate README documentation."
authors = [
{ name="mutl3y" }
]
readme = "README.md"
requires-python = ">=3.14"
license = { text = "Apache-2.0" }
dependencies = [
"PyYAML>=5.4",
"Jinja2>=2.11"
]
[project.scripts]
prism = "prism.cli:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"tox",
"mypy",
"pip-audit",
"ruff==0.15.6",
"black==25.1.0",
"pre-commit",
"markdown",
]
[tool.ruff]
target-version = "py314"
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["import-untyped"]
follow_imports = "silent"
files = ["src/prism"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
prism = ["templates/*.j2", "templates/*.md", "data/*.yml"]