specfuse 0.3.2__tar.gz → 0.3.3__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.
- {specfuse-0.3.2/specfuse.egg-info → specfuse-0.3.3}/PKG-INFO +4 -4
- {specfuse-0.3.2 → specfuse-0.3.3}/pyproject.toml +4 -4
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse/cli.py +1 -1
- {specfuse-0.3.2 → specfuse-0.3.3/specfuse.egg-info}/PKG-INFO +4 -4
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse.egg-info/requires.txt +3 -3
- {specfuse-0.3.2 → specfuse-0.3.3}/LICENSE +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/NOTICE +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/README.md +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/setup.cfg +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse/publish.py +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse.egg-info/SOURCES.txt +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse.egg-info/dependency_links.txt +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse.egg-info/entry_points.txt +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/specfuse.egg-info/top_level.txt +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/tests/test_cli.py +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/tests/test_entry_points.py +0 -0
- {specfuse-0.3.2 → specfuse-0.3.3}/tests/test_publish.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: specfuse
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: Specfuse umbrella CLI — bridges the pip-installed driver and the Claude Code plugin (init / upgrade).
|
|
5
5
|
Author: Specfuse contributors
|
|
6
6
|
License: Apache-2.0
|
|
@@ -17,16 +17,16 @@ Requires-Python: >=3.10
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
19
|
License-File: NOTICE
|
|
20
|
-
Requires-Dist: specfuse-loop>=0.3.
|
|
20
|
+
Requires-Dist: specfuse-loop>=0.3.13
|
|
21
21
|
Provides-Extra: dev
|
|
22
22
|
Requires-Dist: coverage>=7.0; extra == "dev"
|
|
23
23
|
Requires-Dist: ruff>=0.6; extra == "dev"
|
|
24
24
|
Provides-Extra: orchestrator
|
|
25
|
-
Requires-Dist: specfuse-orchestrator>=0.
|
|
25
|
+
Requires-Dist: specfuse-orchestrator>=0.4.1; extra == "orchestrator"
|
|
26
26
|
Provides-Extra: authoring
|
|
27
27
|
Requires-Dist: specfuse-authoring>=0.3.0; extra == "authoring"
|
|
28
28
|
Provides-Extra: all
|
|
29
|
-
Requires-Dist: specfuse-orchestrator>=0.
|
|
29
|
+
Requires-Dist: specfuse-orchestrator>=0.4.1; extra == "all"
|
|
30
30
|
Requires-Dist: specfuse-authoring>=0.3.0; extra == "all"
|
|
31
31
|
Dynamic: license-file
|
|
32
32
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "specfuse"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.3"
|
|
8
8
|
description = "Specfuse umbrella CLI — bridges the pip-installed driver and the Claude Code plugin (init / upgrade)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -25,7 +25,7 @@ classifiers = [
|
|
|
25
25
|
# `specfuse.loop.scaffold`, which only exists in specfuse-loop 0.3.0+ (added by
|
|
26
26
|
# FEAT-2026-0026). A 0.2.x driver would import-fail at `specfuse init`.
|
|
27
27
|
dependencies = [
|
|
28
|
-
"specfuse-loop>=0.3.
|
|
28
|
+
"specfuse-loop>=0.3.13",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[project.optional-dependencies]
|
|
@@ -33,13 +33,13 @@ dev = ["coverage>=7.0", "ruff>=0.6"]
|
|
|
33
33
|
# Opt-in extra: the multi-repo initiative-coordination component. NOT a default
|
|
34
34
|
# dependency (unlike specfuse-loop) — it runs at one coordination point, not in
|
|
35
35
|
# every consumer. `pipx install specfuse[orchestrator]`.
|
|
36
|
-
orchestrator = ["specfuse-orchestrator>=0.
|
|
36
|
+
orchestrator = ["specfuse-orchestrator>=0.4.1"]
|
|
37
37
|
# Opt-in extra: the spec-authoring kit (design/validate OpenAPI/AsyncAPI/Arazzo +
|
|
38
38
|
# the specs agent). `pipx install specfuse[authoring]`.
|
|
39
39
|
authoring = ["specfuse-authoring>=0.3.0"]
|
|
40
40
|
# Everything: the driver (default dep) + orchestrator + authoring, so
|
|
41
41
|
# `pipx install specfuse[all]` installs the whole suite in one command.
|
|
42
|
-
all = ["specfuse-orchestrator>=0.
|
|
42
|
+
all = ["specfuse-orchestrator>=0.4.1", "specfuse-authoring>=0.3.0"]
|
|
43
43
|
|
|
44
44
|
[project.scripts]
|
|
45
45
|
specfuse = "specfuse.cli:main"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: specfuse
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: Specfuse umbrella CLI — bridges the pip-installed driver and the Claude Code plugin (init / upgrade).
|
|
5
5
|
Author: Specfuse contributors
|
|
6
6
|
License: Apache-2.0
|
|
@@ -17,16 +17,16 @@ Requires-Python: >=3.10
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
19
|
License-File: NOTICE
|
|
20
|
-
Requires-Dist: specfuse-loop>=0.3.
|
|
20
|
+
Requires-Dist: specfuse-loop>=0.3.13
|
|
21
21
|
Provides-Extra: dev
|
|
22
22
|
Requires-Dist: coverage>=7.0; extra == "dev"
|
|
23
23
|
Requires-Dist: ruff>=0.6; extra == "dev"
|
|
24
24
|
Provides-Extra: orchestrator
|
|
25
|
-
Requires-Dist: specfuse-orchestrator>=0.
|
|
25
|
+
Requires-Dist: specfuse-orchestrator>=0.4.1; extra == "orchestrator"
|
|
26
26
|
Provides-Extra: authoring
|
|
27
27
|
Requires-Dist: specfuse-authoring>=0.3.0; extra == "authoring"
|
|
28
28
|
Provides-Extra: all
|
|
29
|
-
Requires-Dist: specfuse-orchestrator>=0.
|
|
29
|
+
Requires-Dist: specfuse-orchestrator>=0.4.1; extra == "all"
|
|
30
30
|
Requires-Dist: specfuse-authoring>=0.3.0; extra == "all"
|
|
31
31
|
Dynamic: license-file
|
|
32
32
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
specfuse-loop>=0.3.
|
|
1
|
+
specfuse-loop>=0.3.13
|
|
2
2
|
|
|
3
3
|
[all]
|
|
4
|
-
specfuse-orchestrator>=0.
|
|
4
|
+
specfuse-orchestrator>=0.4.1
|
|
5
5
|
specfuse-authoring>=0.3.0
|
|
6
6
|
|
|
7
7
|
[authoring]
|
|
@@ -12,4 +12,4 @@ coverage>=7.0
|
|
|
12
12
|
ruff>=0.6
|
|
13
13
|
|
|
14
14
|
[orchestrator]
|
|
15
|
-
specfuse-orchestrator>=0.
|
|
15
|
+
specfuse-orchestrator>=0.4.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|