starmetal 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,17 @@
1
+ /target
2
+ .agents/
3
+ packages/crates/starmetal/target/
4
+ packages/pypi/.venv/
5
+ packages/pypi/uv.lock
6
+ packages/npm/*.tgz
7
+ packages/**/__pycache__/
8
+ packages/pypi/dist/
9
+ packages/pypi/*.egg-info/
10
+
11
+ # BEGIN ai-rulez (DO NOT EDIT - managed by ai-rulez)
12
+ .claude/
13
+ .codex/
14
+ .mcp.json
15
+ AGENTS.md
16
+ CLAUDE.md
17
+ # END ai-rulez
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: starmetal
3
+ Version: 0.0.1
4
+ Summary: High-performance, self-hosted multi-language package registry and pull-through registry proxy for private software supply chains.
5
+ Project-URL: Homepage, https://github.com/Goldziher/starmetal
6
+ Project-URL: Repository, https://github.com/Goldziher/starmetal.git
7
+ Project-URL: Issues, https://github.com/Goldziher/starmetal/issues
8
+ Author: Na'aman Hirschfeld
9
+ License-Expression: BUSL-1.1
10
+ Keywords: package-cache,package-registry,registry-proxy,self-hosted,supply-chain
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+
20
+ # StarMetal
21
+
22
+ StarMetal is a high-performance, self-hosted multi-language package registry and pull-through
23
+ registry proxy for private software supply chains.
24
+
25
+ This `0.0.1` PyPI package reserves the public `starmetal` namespace while the native `sm` CLI
26
+ distribution is finalized. Use the Docker image or build the Rust workspace from source for the
27
+ current server.
28
+
29
+ Repository: <https://github.com/Goldziher/starmetal>
@@ -0,0 +1,10 @@
1
+ # StarMetal
2
+
3
+ StarMetal is a high-performance, self-hosted multi-language package registry and pull-through
4
+ registry proxy for private software supply chains.
5
+
6
+ This `0.0.1` PyPI package reserves the public `starmetal` namespace while the native `sm` CLI
7
+ distribution is finalized. Use the Docker image or build the Rust workspace from source for the
8
+ current server.
9
+
10
+ Repository: <https://github.com/Goldziher/starmetal>
@@ -0,0 +1,40 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.26"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "starmetal"
7
+ version = "0.0.1"
8
+ description = "High-performance, self-hosted multi-language package registry and pull-through registry proxy for private software supply chains."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "BUSL-1.1"
12
+ authors = [
13
+ { name = "Na'aman Hirschfeld" }
14
+ ]
15
+ keywords = [
16
+ "package-registry",
17
+ "package-cache",
18
+ "registry-proxy",
19
+ "self-hosted",
20
+ "supply-chain"
21
+ ]
22
+ classifiers = [
23
+ "Development Status :: 2 - Pre-Alpha",
24
+ "Environment :: Console",
25
+ "Intended Audience :: Developers",
26
+ "Programming Language :: Python :: 3",
27
+ "Programming Language :: Python :: 3 :: Only",
28
+ "Topic :: Software Development :: Build Tools"
29
+ ]
30
+
31
+ [project.urls]
32
+ Homepage = "https://github.com/Goldziher/starmetal"
33
+ Repository = "https://github.com/Goldziher/starmetal.git"
34
+ Issues = "https://github.com/Goldziher/starmetal/issues"
35
+
36
+ [project.scripts]
37
+ sm = "starmetal.cli:main"
38
+
39
+ [tool.hatch.build.targets.wheel]
40
+ packages = ["src/starmetal"]
@@ -0,0 +1,4 @@
1
+ """StarMetal namespace package."""
2
+
3
+ __all__ = ["__version__"]
4
+ __version__ = "0.0.1"
@@ -0,0 +1,26 @@
1
+ """Small namespace-hold CLI for the initial StarMetal package release."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import argparse
6
+
7
+ from starmetal import __version__
8
+
9
+
10
+ def main() -> None:
11
+ parser = argparse.ArgumentParser(
12
+ prog="sm",
13
+ description="StarMetal namespace package. Build from source or use Docker for the current server.",
14
+ )
15
+ parser.add_argument("--version", action="version", version=f"sm {__version__}")
16
+ parser.parse_args()
17
+ print(
18
+ "StarMetal 0.0.1\n\n"
19
+ "This PyPI package reserves the public starmetal namespace while the native sm CLI "
20
+ "distribution is finalized.\n"
21
+ "Repository: https://github.com/Goldziher/starmetal"
22
+ )
23
+
24
+
25
+ if __name__ == "__main__":
26
+ main()