-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
74 lines (62 loc) · 1.47 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
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ipalab-config"
dynamic = ["version"]
authors = [
{name = "Rafael Guterres Jeffman", email = "[email protected]"},
]
description = "Generates compose and inventory files to create a container based FreeIPA cluster."
readme = "README.md"
requires-python = ">=3.6"
keywords = ["freeipa", "ansible"]
license = {text = "0BSD"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Zero-Clause BSD (0BSD)",
"Framework :: Ansible",
]
dependencies = ["ruamel.yaml"]
[project.scripts]
ipalab-config = "ipalab_config.__main__:main"
[project.optional-dependencies]
dev = [
"black",
"pre-commit",
"pylint",
"yamllint",
"behave>=1.2.7dev6"
]
[tool.setuptools]
packages = ["ipalab_config"]
[tool.setuptools.package-data]
ipalab_config = [
"data/containerfiles/*",
"data/playbooks/*.yml",
"data/containerfiles/system-service/*",
]
[tool.setuptools.dynamic]
version = {attr = "ipalab_config.__version__"}
[tool.black]
line-length = 80
target-version = ['py312']
include = '\.pyi?$'
[tool.pylint]
max-line-length = 80
disable = [
"too-many-locals",
]
[tool.behave]
show_multiline = false
show_timings = false
[tool.coverage.run]
omit = [
"features/steps/*"
]
[tool.coverage.report]
skip_empty = true
skip_covered = true
show_missing = true