forked from rozmiarD/tecrax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (63 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (63 loc) · 1.87 KB
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
75
76
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "tecrax"
version = "0.4.0rc3"
description = "Governed infrastructure-operations profile and RExecOp domain package over GovEngine and SCLite."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Krzysztof Probola" }]
keywords = ["governance", "infrastructure", "operations", "sclite", "govengine"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Systems Administration",
]
dependencies = [
"govengine==1.0.0rc2",
"sclite-core==2.0.1",
"rexecop==1.0.0rc2",
]
[project.entry-points."rexecop.profiles"]
tecrax = "tecrax:profile_root"
[project.entry-points."rexecop.internal_actions"]
tecrax = "tecrax.internal_actions:register_handlers"
[project.entry-points."rexecop.connector_backends"]
tecrax_chrony_ntp = "tecrax.connectors.chrony:build_chrony_ntp_backend"
[project.urls]
Homepage = "https://github.com/rozmiarD/tecrax"
Repository = "https://github.com/rozmiarD/tecrax"
[project.scripts]
tecrax = "tecrax.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8,<9",
"ruff>=0.14,<1",
"mypy>=1.18,<2",
]
[tool.hatch.build.targets.wheel]
packages = ["src/tecrax"]
[tool.hatch.build.targets.wheel.force-include]
"examples" = "examples"
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src", "tests", "scripts"]
[tool.ruff.lint]
select = ["F"]
[tool.mypy]
python_version = "3.11"
files = ["src/tecrax"]
check_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
warn_unused_configs = true
[tool.pytest.ini_options]
pythonpath = ["."]