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.
Files changed (41) hide show
  1. stndp_cli-0.1.0/PKG-INFO +7 -0
  2. stndp_cli-0.1.0/pyproject.toml +23 -0
  3. stndp_cli-0.1.0/setup.cfg +4 -0
  4. stndp_cli-0.1.0/stndp/__init__.py +0 -0
  5. stndp_cli-0.1.0/stndp/main.py +2969 -0
  6. stndp_cli-0.1.0/stndp/mcp_server.py +582 -0
  7. stndp_cli-0.1.0/stndp_cli.egg-info/PKG-INFO +7 -0
  8. stndp_cli-0.1.0/stndp_cli.egg-info/SOURCES.txt +39 -0
  9. stndp_cli-0.1.0/stndp_cli.egg-info/dependency_links.txt +1 -0
  10. stndp_cli-0.1.0/stndp_cli.egg-info/entry_points.txt +2 -0
  11. stndp_cli-0.1.0/stndp_cli.egg-info/requires.txt +3 -0
  12. stndp_cli-0.1.0/stndp_cli.egg-info/top_level.txt +1 -0
  13. stndp_cli-0.1.0/tests/test_ambient.py +34 -0
  14. stndp_cli-0.1.0/tests/test_block.py +33 -0
  15. stndp_cli-0.1.0/tests/test_bugs.py +56 -0
  16. stndp_cli-0.1.0/tests/test_capture.py +56 -0
  17. stndp_cli-0.1.0/tests/test_checkpoints.py +110 -0
  18. stndp_cli-0.1.0/tests/test_commands.py +258 -0
  19. stndp_cli-0.1.0/tests/test_decision_review.py +31 -0
  20. stndp_cli-0.1.0/tests/test_decisions.py +65 -0
  21. stndp_cli-0.1.0/tests/test_doctor.py +36 -0
  22. stndp_cli-0.1.0/tests/test_drafts.py +85 -0
  23. stndp_cli-0.1.0/tests/test_editor.py +44 -0
  24. stndp_cli-0.1.0/tests/test_encoding.py +28 -0
  25. stndp_cli-0.1.0/tests/test_episodes.py +88 -0
  26. stndp_cli-0.1.0/tests/test_github.py +125 -0
  27. stndp_cli-0.1.0/tests/test_glob.py +50 -0
  28. stndp_cli-0.1.0/tests/test_glue.py +40 -0
  29. stndp_cli-0.1.0/tests/test_graph.py +44 -0
  30. stndp_cli-0.1.0/tests/test_guide.py +83 -0
  31. stndp_cli-0.1.0/tests/test_helpers.py +135 -0
  32. stndp_cli-0.1.0/tests/test_links.py +45 -0
  33. stndp_cli-0.1.0/tests/test_mcp.py +443 -0
  34. stndp_cli-0.1.0/tests/test_noninteractive.py +36 -0
  35. stndp_cli-0.1.0/tests/test_schedule.py +63 -0
  36. stndp_cli-0.1.0/tests/test_search_context.py +28 -0
  37. stndp_cli-0.1.0/tests/test_structural.py +53 -0
  38. stndp_cli-0.1.0/tests/test_team_use.py +31 -0
  39. stndp_cli-0.1.0/tests/test_timeline.py +40 -0
  40. stndp_cli-0.1.0/tests/test_tokens.py +21 -0
  41. stndp_cli-0.1.0/tests/test_workspace.py +45 -0
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: stndp-cli
3
+ Version: 0.1.0
4
+ Requires-Python: >=3.11
5
+ Requires-Dist: httpx>=0.28.1
6
+ Requires-Dist: rich>=15.0.0
7
+ Requires-Dist: typer>=0.26.7
@@ -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"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes