shipmunk 0.0.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.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.5
2
+ Name: shipmunk
3
+ Version: 0.0.0
4
+ Summary: Nightly packaging, verification and reporting for the Agentastic products. Name reservation; not yet functional.
5
+ Project-URL: Homepage, https://www.agentastic.dev
6
+ Project-URL: Source, https://github.com/agentasticai/monorepo
7
+ Author-email: Agentastic <eng@agentastic.ai>
8
+ License: Apache-2.0
9
+ Keywords: agentastic,nightly,packaging,release
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Topic :: Software Development :: Build Tools
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # shipmunk
17
+
18
+ Nightly packaging, verification and reporting for the Agentastic products.
19
+
20
+ Shipmunk builds each product from a clean macOS VM every night, packages and
21
+ signs the result, runs its test tiers, installs the artifact in a fresh VM,
22
+ drives end-to-end scenarios against it, and publishes one report per night.
23
+ Beta and stable releases are promotions of a nightly artifact that already
24
+ soaked, never a rebuild.
25
+
26
+ **This 0.0.0 release reserves the name. It contains no working code.**
27
+ Development happens in the Agentastic monorepo under `core/shipmunk`.
28
+
29
+ See https://www.agentastic.dev
@@ -0,0 +1,14 @@
1
+ # shipmunk
2
+
3
+ Nightly packaging, verification and reporting for the Agentastic products.
4
+
5
+ Shipmunk builds each product from a clean macOS VM every night, packages and
6
+ signs the result, runs its test tiers, installs the artifact in a fresh VM,
7
+ drives end-to-end scenarios against it, and publishes one report per night.
8
+ Beta and stable releases are promotions of a nightly artifact that already
9
+ soaked, never a rebuild.
10
+
11
+ **This 0.0.0 release reserves the name. It contains no working code.**
12
+ Development happens in the Agentastic monorepo under `core/shipmunk`.
13
+
14
+ See https://www.agentastic.dev
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "shipmunk"
7
+ version = "0.0.0"
8
+ description = "Nightly packaging, verification and reporting for the Agentastic products. Name reservation; not yet functional."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "Agentastic", email = "eng@agentastic.ai" }]
13
+ keywords = ["agentastic", "release", "nightly", "packaging"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "License :: OSI Approved :: Apache Software License",
17
+ "Topic :: Software Development :: Build Tools",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://www.agentastic.dev"
22
+ Source = "https://github.com/agentasticai/monorepo"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["src/shipmunk"]
@@ -0,0 +1,7 @@
1
+ """Name reservation for the Agentastic nightly packaging system.
2
+
3
+ This distribution contains no working code. Development happens in the
4
+ Agentastic monorepo under ``core/shipmunk``.
5
+ """
6
+
7
+ __version__ = "0.0.0"