Skip to content

Commit 2290134

Browse files
authored
Refactor the constructor to use the sdk, reduced loc ~300 lines (#6)
1 parent bd3b5a4 commit 2290134

File tree

6 files changed

+638
-91
lines changed

6 files changed

+638
-91
lines changed

packages/constructor/pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
[project]
22
name = "scp-constructor"
3-
version = "0.1.0"
4-
description = "Scan repositories for scp.yaml files and build architecture graphs"
3+
version = "0.3.0"
4+
description = "Build architecture models from scp.yaml files"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"pydantic>=2.0",
9-
"pyyaml>=6.0",
10-
"neo4j>=5.0",
11-
"httpx>=0.25",
8+
"scp-sdk>=0.1.0",
129
"typer>=0.9",
1310
"rich>=13.0",
11+
"neo4j>=5.0",
12+
"httpx>=0.25",
1413
]
1514

1615
[project.scripts]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
"""SCP Constructor - Build architecture graphs from scp.yaml files."""
1+
"""Build architecture graphs from scp.yaml files."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)