stndp-cli 0.1.0__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.
- stndp_cli-0.1.0/PKG-INFO +7 -0
- stndp_cli-0.1.0/pyproject.toml +23 -0
- stndp_cli-0.1.0/setup.cfg +4 -0
- stndp_cli-0.1.0/stndp/__init__.py +0 -0
- stndp_cli-0.1.0/stndp/main.py +2969 -0
- stndp_cli-0.1.0/stndp/mcp_server.py +582 -0
- stndp_cli-0.1.0/stndp_cli.egg-info/PKG-INFO +7 -0
- stndp_cli-0.1.0/stndp_cli.egg-info/SOURCES.txt +39 -0
- stndp_cli-0.1.0/stndp_cli.egg-info/dependency_links.txt +1 -0
- stndp_cli-0.1.0/stndp_cli.egg-info/entry_points.txt +2 -0
- stndp_cli-0.1.0/stndp_cli.egg-info/requires.txt +3 -0
- stndp_cli-0.1.0/stndp_cli.egg-info/top_level.txt +1 -0
- stndp_cli-0.1.0/tests/test_ambient.py +34 -0
- stndp_cli-0.1.0/tests/test_block.py +33 -0
- stndp_cli-0.1.0/tests/test_bugs.py +56 -0
- stndp_cli-0.1.0/tests/test_capture.py +56 -0
- stndp_cli-0.1.0/tests/test_checkpoints.py +110 -0
- stndp_cli-0.1.0/tests/test_commands.py +258 -0
- stndp_cli-0.1.0/tests/test_decision_review.py +31 -0
- stndp_cli-0.1.0/tests/test_decisions.py +65 -0
- stndp_cli-0.1.0/tests/test_doctor.py +36 -0
- stndp_cli-0.1.0/tests/test_drafts.py +85 -0
- stndp_cli-0.1.0/tests/test_editor.py +44 -0
- stndp_cli-0.1.0/tests/test_encoding.py +28 -0
- stndp_cli-0.1.0/tests/test_episodes.py +88 -0
- stndp_cli-0.1.0/tests/test_github.py +125 -0
- stndp_cli-0.1.0/tests/test_glob.py +50 -0
- stndp_cli-0.1.0/tests/test_glue.py +40 -0
- stndp_cli-0.1.0/tests/test_graph.py +44 -0
- stndp_cli-0.1.0/tests/test_guide.py +83 -0
- stndp_cli-0.1.0/tests/test_helpers.py +135 -0
- stndp_cli-0.1.0/tests/test_links.py +45 -0
- stndp_cli-0.1.0/tests/test_mcp.py +443 -0
- stndp_cli-0.1.0/tests/test_noninteractive.py +36 -0
- stndp_cli-0.1.0/tests/test_schedule.py +63 -0
- stndp_cli-0.1.0/tests/test_search_context.py +28 -0
- stndp_cli-0.1.0/tests/test_structural.py +53 -0
- stndp_cli-0.1.0/tests/test_team_use.py +31 -0
- stndp_cli-0.1.0/tests/test_timeline.py +40 -0
- stndp_cli-0.1.0/tests/test_tokens.py +21 -0
- stndp_cli-0.1.0/tests/test_workspace.py +45 -0
stndp_cli-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "stndp-cli"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
requires-python = ">=3.11"
|
|
9
|
+
|
|
10
|
+
dependencies = [
|
|
11
|
+
"httpx>=0.28.1",
|
|
12
|
+
"rich>=15.0.0",
|
|
13
|
+
"typer>=0.26.7",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
stn = "stndp.main:app"
|
|
18
|
+
|
|
19
|
+
# Single import package `stndp` (cli/stndp/) holding main.py + mcp_server.py.
|
|
20
|
+
# Shipping a package rather than flat top-level modules keeps the install from
|
|
21
|
+
# dropping generic `main`/`mcp_server` names into site-packages.
|
|
22
|
+
[tool.setuptools]
|
|
23
|
+
packages = ["stndp"]
|
|
File without changes
|