Skip to content

Commit 9d379ab

Browse files
committed
fix: Remove -shared from package name
1 parent e7e8caf commit 9d379ab

8 files changed

Lines changed: 883 additions & 122 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This is a Python SDK monorepo for the Agentic Layer platform that helps convert
1515

1616
### Package Structure
1717
- Root package: `agentic-layer-sdk` (meta-package)
18-
- Shared: `agentic-layer-sdk-shared` in `shared/agenticlayer/` (namespace base, build-time only)
18+
- Shared: `agentic-layer-sdk` in `shared/agenticlayer/` (namespace base, build-time only)
1919
- ADK SDK: `agentic-layer-sdk-adk` in `adk/agenticlayer/adk/`
2020
- MSAF SDK: `agentic-layer-sdk-msaf` in `msaf/agenticlayer/msaf/`
2121
- Uses PEP 420 implicit namespace packages: `agenticlayer/` dirs have NO `__init__.py`

adk/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
readme = "README.md"
55
requires-python = ">=3.14,<3.15"
66
dependencies = [
7-
"agentic-layer-sdk-shared",
7+
"agentic-layer-sdk",
88
"google-adk[a2a]",
99
"litellm",
1010
"openinference-instrumentation-google-adk",
@@ -34,7 +34,7 @@ build-backend = "hatchling.build"
3434
packages = ["agenticlayer"]
3535

3636
[tool.uv.sources]
37-
agentic-layer-sdk-shared = { path = "../shared" }
37+
agentic-layer-sdk = { path = "../shared" }
3838

3939

4040
[tool.pytest.ini_options]

adk/uv.lock

Lines changed: 43 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

msaf/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
readme = "README.md"
55
requires-python = ">=3.14,<3.15"
66
dependencies = [
7-
"agentic-layer-sdk-shared",
7+
"agentic-layer-sdk",
88
"agent-framework-core>=1.0.0rc2",
99
"a2a-sdk",
1010
"httpx",
@@ -36,7 +36,7 @@ packages = ["agenticlayer"]
3636
prerelease = "allow"
3737

3838
[tool.uv.sources]
39-
agentic-layer-sdk-shared = { path = "../shared" }
39+
agentic-layer-sdk = { path = "../shared" }
4040

4141

4242
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)