soliplex-template 0.13__tar.gz → 0.14.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {soliplex_template-0.13/src/soliplex_template.egg-info → soliplex_template-0.14.dev0}/PKG-INFO +1 -1
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/pyproject.toml +20 -28
- {soliplex_template-0.13 → soliplex_template-0.14.dev0/src/soliplex_template.egg-info}/PKG-INFO +1 -1
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/LICENSE +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/README.md +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/setup.cfg +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template/gitea.py +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template/secrets.py +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template.egg-info/SOURCES.txt +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template.egg-info/dependency_links.txt +0 -0
- {soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template.egg-info/top_level.txt +0 -0
{soliplex_template-0.13/src/soliplex_template.egg-info → soliplex_template-0.14.dev0}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: soliplex-template
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.dev0
|
|
4
4
|
Summary: Docker Compose template for a Soliplex stack, plus the soliplex-template Agent Skill and its build tooling.
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -4,13 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "soliplex-template"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.14dev0"
|
|
8
8
|
description = "Docker Compose template for a Soliplex stack, plus the soliplex-template Agent Skill and its build tooling."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.12"
|
|
11
|
-
# The 'soliplex_template' package (src/) is stdlib-only; its modules
|
|
12
|
-
# ('secrets', 'gitea') back the repo's provisioning scripts. (The bundled
|
|
13
|
-
# skill's add_room.py gets its room-wiring core from 'soliplex-plumber'.)
|
|
14
11
|
dependencies = []
|
|
15
12
|
|
|
16
13
|
# Tooling for the soliplex-template skill. The scripts also carry PEP 723
|
|
@@ -35,37 +32,32 @@ dev = [
|
|
|
35
32
|
"pytest",
|
|
36
33
|
"pytest-cov",
|
|
37
34
|
"ruff",
|
|
38
|
-
#
|
|
39
|
-
# pinned to match that script's PEP 723 header.
|
|
40
|
-
"skills-ref==0.1.1",
|
|
35
|
+
"skills-ref==0.1.1", # 'generate_soliplex_project.py'
|
|
41
36
|
"soliplex-skills >= 0.5",
|
|
42
|
-
#
|
|
43
|
-
# loads that script by path, so the test env must provide it. Pinned to
|
|
44
|
-
# match add_room.py's PEP 723 header.
|
|
45
|
-
"soliplex-plumber >= 0.2.1",
|
|
37
|
+
"soliplex-plumber >= 0.4", # skill's 'add_room.py'/'soliplex_config.py'
|
|
46
38
|
"zensical",
|
|
47
39
|
]
|
|
48
40
|
|
|
49
|
-
# The repo is configuration + Dockerfiles + skill source, but it also ships
|
|
50
|
-
# importable 'soliplex_template' package (src/), so it builds as a wheel.
|
|
51
|
-
# PEP 420 # namespace package (no __init__.py);
|
|
52
|
-
# clients import the module directly, e.g.
|
|
53
|
-
# 'from soliplex_template import secrets'.
|
|
41
|
+
# The repo is configuration + Dockerfiles + skill source, but it also ships
|
|
42
|
+
# the importable 'soliplex_template' package (src/), so it builds as a wheel.
|
|
54
43
|
[tool.setuptools.packages.find]
|
|
55
44
|
where = ["src"]
|
|
56
45
|
namespaces = true
|
|
57
46
|
|
|
58
|
-
#
|
|
59
|
-
#
|
|
60
|
-
#
|
|
61
|
-
#
|
|
47
|
+
# Required 100% unit test statement/branch coverage:
|
|
48
|
+
#
|
|
49
|
+
# --cov=scripts measures the repo-level build tooling;
|
|
50
|
+
# --cov=skill/scripts the bundled generator/version helpers;
|
|
51
|
+
# --cov=tests/unit keeps the test files themselves dead-code-free.
|
|
52
|
+
#
|
|
53
|
+
# Functional tests live under tests/functional/ and are opt-in: they generate
|
|
54
|
+
# a real project and shell out to git/openssl/docker). Run them explicitly
|
|
55
|
+
# with: # 'uv run --group dev pytest tests/functional --no-cov'
|
|
56
|
+
#
|
|
57
|
+
# (--no-cov because the generator runs in a child process, so it isn't
|
|
58
|
+
# measured and would otherwise trip --cov-fail-under).
|
|
62
59
|
[tool.pytest.ini_options]
|
|
63
60
|
python_files = "test_*.py"
|
|
64
|
-
# Functional tests live under tests/functional/ and are opt-in (they generate a
|
|
65
|
-
# real project and shell out to git/openssl/docker). Run them explicitly with
|
|
66
|
-
# uv run --group dev pytest tests/functional --no-cov
|
|
67
|
-
# (--no-cov because the generator runs in a child process, so it isn't measured
|
|
68
|
-
# and would otherwise trip --cov-fail-under). They are not collected by default.
|
|
69
61
|
testpaths = ["tests/unit"]
|
|
70
62
|
addopts = "--cov=scripts --cov=skills/soliplex-template/scripts --cov=src/soliplex_template --cov=tests/unit --cov-branch --cov-fail-under=100"
|
|
71
63
|
markers = [
|
|
@@ -75,9 +67,9 @@ markers = [
|
|
|
75
67
|
[tool.coverage.report]
|
|
76
68
|
show_missing = true
|
|
77
69
|
|
|
78
|
-
#
|
|
79
|
-
# single-line imports, and pytest-style tweaks). ruff-format is enforced by
|
|
80
|
-
# pre-commit hook; `ruff check` uses these rules on demand.
|
|
70
|
+
# Mirror soliplex/soliplex linting (same rule selection, line length,
|
|
71
|
+
# single-line imports, and pytest-style tweaks). ruff-format is enforced by
|
|
72
|
+
# the pre-commit hook; `ruff check` uses these rules on demand.
|
|
81
73
|
[tool.ruff]
|
|
82
74
|
line-length = 79
|
|
83
75
|
exclude = [
|
{soliplex_template-0.13 → soliplex_template-0.14.dev0/src/soliplex_template.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: soliplex-template
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.dev0
|
|
4
4
|
Summary: Docker Compose template for a Soliplex stack, plus the soliplex-template Agent Skill and its build tooling.
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{soliplex_template-0.13 → soliplex_template-0.14.dev0}/src/soliplex_template.egg-info/top_level.txt
RENAMED
|
File without changes
|