agentship-sdk 0.0.1__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.
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.eggs/
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
.venv/
|
|
9
|
+
venv/
|
|
10
|
+
.pytest_cache/
|
|
11
|
+
.ruff_cache/
|
|
12
|
+
.mypy_cache/
|
|
13
|
+
.coverage
|
|
14
|
+
htmlcov/
|
|
15
|
+
|
|
16
|
+
# Env / secrets — never commit
|
|
17
|
+
.env
|
|
18
|
+
.env.*
|
|
19
|
+
!.env.example
|
|
20
|
+
|
|
21
|
+
# Editor / OS
|
|
22
|
+
.DS_Store
|
|
23
|
+
.idea/
|
|
24
|
+
.vscode/
|
|
25
|
+
|
|
26
|
+
# Docs build
|
|
27
|
+
site/
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: agentship-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AgentShip — an open, recipe-first harness that wires best-of-breed agent libraries behind small, stable seams. Meta-package: one install for the everyday stack (kernel + default engine + CLI).
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.13
|
|
7
|
+
Requires-Dist: agentship-cli==0.0.1
|
|
8
|
+
Requires-Dist: agentship-core==0.0.1
|
|
9
|
+
Requires-Dist: agentship-langgraph==0.0.1
|
|
10
|
+
Provides-Extra: all
|
|
11
|
+
Requires-Dist: agentship-cli==0.0.1; extra == 'all'
|
|
12
|
+
Requires-Dist: agentship-langgraph==0.0.1; extra == 'all'
|
|
13
|
+
Requires-Dist: agentship-observability==0.0.1; extra == 'all'
|
|
14
|
+
Requires-Dist: agentship-service==0.0.1; extra == 'all'
|
|
15
|
+
Provides-Extra: langgraph
|
|
16
|
+
Requires-Dist: agentship-langgraph==0.0.1; extra == 'langgraph'
|
|
17
|
+
Provides-Extra: mcp
|
|
18
|
+
Provides-Extra: memory
|
|
19
|
+
Provides-Extra: observability
|
|
20
|
+
Requires-Dist: agentship-observability==0.0.1; extra == 'observability'
|
|
21
|
+
Provides-Extra: service
|
|
22
|
+
Requires-Dist: agentship-service==0.0.1; extra == 'service'
|
|
23
|
+
Provides-Extra: starter
|
|
24
|
+
Requires-Dist: agentship-cli==0.0.1; extra == 'starter'
|
|
25
|
+
Requires-Dist: agentship-langgraph==0.0.1; extra == 'starter'
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# agentship (meta-package)
|
|
29
|
+
|
|
30
|
+
One install for the everyday stack: `pip install agentship-sdk` pulls the kernel (`agentship-core`), the default engine (`agentship-langgraph`), and the CLI (`agentship-cli`). Pillar extras (`[mcp]`, `[memory]`, `[observability]`, `[service]`, `[all]`) are placeholders that fill in as each pillar phase lands.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
# agentship (meta-package)
|
|
2
|
+
|
|
3
|
+
One install for the everyday stack: `pip install agentship-sdk` pulls the kernel (`agentship-core`), the default engine (`agentship-langgraph`), and the CLI (`agentship-cli`). Pillar extras (`[mcp]`, `[memory]`, `[observability]`, `[service]`, `[all]`) are placeholders that fill in as each pillar phase lands.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agentship-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "AgentShip — an open, recipe-first harness that wires best-of-breed agent libraries behind small, stable seams. Meta-package: one install for the everyday stack (kernel + default engine + CLI)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.13"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
# The everyday stack: `pip install agentship-sdk` gives a real agent out of the box —
|
|
13
|
+
# kernel + the default LangGraph engine + the CLI. This is the same set as [starter];
|
|
14
|
+
# the extra exists so the documented `pip install "agentship-sdk[starter]"` path resolves.
|
|
15
|
+
dependencies = [
|
|
16
|
+
"agentship-core==0.0.1",
|
|
17
|
+
"agentship-langgraph==0.0.1",
|
|
18
|
+
"agentship-cli==0.0.1",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.optional-dependencies]
|
|
22
|
+
# ---- Real extras (resolvable today) ----
|
|
23
|
+
# The batteries-included default stack (DESIGN §9 quickstart / §14 Quickstart).
|
|
24
|
+
# `pip install "agentship-sdk[starter]"` == kernel + default engine + CLI. langgraph and
|
|
25
|
+
# cli are already base deps above, so [starter] is the named alias the docs promise;
|
|
26
|
+
# it also becomes the anchor that grows as pillars land (memory/observability/mcp).
|
|
27
|
+
starter = [
|
|
28
|
+
"agentship-langgraph==0.0.1",
|
|
29
|
+
"agentship-cli==0.0.1",
|
|
30
|
+
]
|
|
31
|
+
# The default engine on its own (DESIGN §9; the demo pins `agentship-sdk[langgraph]`).
|
|
32
|
+
langgraph = [
|
|
33
|
+
"agentship-langgraph==0.0.1",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
# ---- Pillar placeholders (empty until the pillar's phase lands) ----
|
|
37
|
+
# Each names the dist it will pull in when that phase ships; kept present so the
|
|
38
|
+
# extra name is stable from day one and `pip install agentship-sdk[<pillar>]` never
|
|
39
|
+
# warns "extra not provided". Fill with the sibling dist as the phase lands.
|
|
40
|
+
mcp = [] # phase 03 — MCP tools (client) + agent-as-MCP-server → agentship-mcp
|
|
41
|
+
memory = [] # phase 08 — long-term, cross-session memory → agentship-memory
|
|
42
|
+
|
|
43
|
+
# The REST/SSE agent gateway — auth, tenant isolation, SSE, WS live (phase 04).
|
|
44
|
+
service = [
|
|
45
|
+
"agentship-service==0.0.1",
|
|
46
|
+
]
|
|
47
|
+
# OpenTelemetry span tree + exporters (console/Phoenix/Langfuse/LangSmith) and the
|
|
48
|
+
# LiteLLM cost/token callback (phase 07). The kernel's vendor-free tracing contract
|
|
49
|
+
# lives in agentship-core; this extra pulls the OTel pipeline that fulfils it.
|
|
50
|
+
observability = [
|
|
51
|
+
"agentship-observability==0.0.1",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
# Everything real above, aggregated. Grows as the placeholders gain deps.
|
|
55
|
+
all = [
|
|
56
|
+
"agentship-langgraph==0.0.1",
|
|
57
|
+
"agentship-cli==0.0.1",
|
|
58
|
+
"agentship-service==0.0.1",
|
|
59
|
+
"agentship-observability==0.0.1",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
# Meta-package: no modules of its own, just dependencies.
|
|
63
|
+
[tool.hatch.build.targets.wheel]
|
|
64
|
+
bypass-selection = true
|