agentic-stacks-cli 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,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentic-stacks-cli
3
+ Version: 0.0.1
4
+ Summary: Agentic Stacks CLI
5
+ Author: Agentic Stacks
@@ -0,0 +1,3 @@
1
+ # astack
2
+
3
+ Coming soon.
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentic-stacks-cli"
7
+ version = "0.0.1"
8
+ description = "Agentic Stacks CLI"
9
+ authors = [
10
+ { name = "Agentic Stacks" },
11
+ ]
12
+
13
+ [tool.hatch.build.targets.wheel]
14
+ packages = ["src/astack"]
15
+
16
+ [project.scripts]
17
+ astack = "astack:main"
@@ -0,0 +1,7 @@
1
+ """astack — CLI for Agentic Stacks."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def main():
7
+ print("astack 0.0.1 — coming soon. Visit https://agentic-stacks.com")