suitable-loop 0.1.2__tar.gz → 0.1.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.
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/PKG-INFO +7 -7
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/pyproject.toml +7 -7
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/__init__.py +1 -1
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/CLAUDE.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/debug-error.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/health-check.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/impact-check.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/onboard.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/release.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/risk-report.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.claude/commands/trace-function.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.github/workflows/publish.yml +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/.gitignore +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/LICENSE +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/README.md +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/__main__.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/analyzers/__init__.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/analyzers/code_analyzer.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/analyzers/git_analyzer.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/analyzers/log_analyzer.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/config.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/db.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/graph/__init__.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/graph/engine.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/models.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/server.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/tools/__init__.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/tools/code_tools.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/tools/git_tools.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/tools/log_tools.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/suitable_loop/tools/util_tools.py +0 -0
- {suitable_loop-0.1.2 → suitable_loop-0.1.3}/tests/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: suitable-loop
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Local production engineering platform — semantic code analysis, git risk scoring, and log correlation via MCP
|
|
5
5
|
Project-URL: Homepage, https://github.com/suitable-adventures/suitable-loop
|
|
6
6
|
Project-URL: Repository, https://github.com/suitable-adventures/suitable-loop
|
|
@@ -18,13 +18,13 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Quality Assurance
|
|
19
19
|
Classifier: Topic :: Software Development :: Testing
|
|
20
20
|
Requires-Python: >=3.11
|
|
21
|
-
Requires-Dist: gitpython
|
|
22
|
-
Requires-Dist: mcp
|
|
23
|
-
Requires-Dist: networkx
|
|
24
|
-
Requires-Dist: radon
|
|
21
|
+
Requires-Dist: gitpython==3.1.46
|
|
22
|
+
Requires-Dist: mcp==1.26.0
|
|
23
|
+
Requires-Dist: networkx==3.6.1
|
|
24
|
+
Requires-Dist: radon==6.0.1
|
|
25
25
|
Provides-Extra: dev
|
|
26
|
-
Requires-Dist: pytest-asyncio
|
|
27
|
-
Requires-Dist: pytest
|
|
26
|
+
Requires-Dist: pytest-asyncio==1.3.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: pytest==9.0.2; extra == 'dev'
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
|
|
30
30
|
# Suitable Loop
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "suitable-loop"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "Local production engineering platform — semantic code analysis, git risk scoring, and log correlation via MCP"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -20,16 +20,16 @@ classifiers = [
|
|
|
20
20
|
"Topic :: Software Development :: Testing",
|
|
21
21
|
]
|
|
22
22
|
dependencies = [
|
|
23
|
-
"mcp
|
|
24
|
-
"networkx
|
|
25
|
-
"gitpython
|
|
26
|
-
"radon
|
|
23
|
+
"mcp==1.26.0",
|
|
24
|
+
"networkx==3.6.1",
|
|
25
|
+
"gitpython==3.1.46",
|
|
26
|
+
"radon==6.0.1",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.optional-dependencies]
|
|
30
30
|
dev = [
|
|
31
|
-
"pytest
|
|
32
|
-
"pytest-asyncio
|
|
31
|
+
"pytest==9.0.2",
|
|
32
|
+
"pytest-asyncio==1.3.0",
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
[project.urls]
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|