beachcomber 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.
@@ -0,0 +1,35 @@
1
+ /target
2
+ /vendor
3
+
4
+ # IDE
5
+ .idea/
6
+ .vscode/
7
+ *.swp
8
+ *.swo
9
+ *~
10
+
11
+ # macOS
12
+ .DS_Store
13
+
14
+ # Claude Code working files
15
+ .claude/
16
+
17
+ # Internal planning docs (kept in repo but not published)
18
+ INIT.md
19
+ docs/superpowers/
20
+
21
+ # SDK build artifacts
22
+ sdks/python/__pycache__/
23
+ sdks/python/**/__pycache__/
24
+ sdks/python/.venv/
25
+ sdks/python/.pytest_cache/
26
+ sdks/python/uv.lock
27
+ sdks/python/dist/
28
+ sdks/node/node_modules/
29
+ sdks/node/dist/
30
+ sdks/ruby/*.gem
31
+ sdks/c/test_beachcomber
32
+ sdks/c/*.o
33
+ sdks/c/*.a
34
+ sdks/c/*.so
35
+ sdks/c/*.dylib
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: beachcomber
3
+ Version: 0.1.0
4
+ Summary: This package exists to prevent name squatting and malicious supply chain attacks. Install libbeachcomber instead. See https://beachcomber.sh
5
+ Project-URL: Homepage, https://beachcomber.sh
6
+ Project-URL: Repository, https://github.com/NavistAu/beachcomber
7
+ Author: NavistAu
8
+ License: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+
14
+ # beachcomber
15
+
16
+ This package exists to prevent name squatting and malicious supply chain attacks.
17
+
18
+ The beachcomber client SDK is published as **libbeachcomber**. The beachcomber daemon binary is distributed via GitHub releases and Homebrew.
19
+
20
+ - Website: https://beachcomber.sh
21
+ - GitHub: https://github.com/NavistAu/beachcomber
22
+ - Client SDK: install **libbeachcomber** instead
@@ -0,0 +1,9 @@
1
+ # beachcomber
2
+
3
+ This package exists to prevent name squatting and malicious supply chain attacks.
4
+
5
+ The beachcomber client SDK is published as **libbeachcomber**. The beachcomber daemon binary is distributed via GitHub releases and Homebrew.
6
+
7
+ - Website: https://beachcomber.sh
8
+ - GitHub: https://github.com/NavistAu/beachcomber
9
+ - Client SDK: install **libbeachcomber** instead
@@ -0,0 +1,5 @@
1
+ raise ImportError(
2
+ "This package exists to prevent name squatting and malicious supply chain attacks. "
3
+ "The beachcomber client SDK is published as 'libbeachcomber'. "
4
+ "Run: pip install libbeachcomber — See https://beachcomber.sh"
5
+ )
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "beachcomber"
7
+ version = "0.1.0"
8
+ description = "This package exists to prevent name squatting and malicious supply chain attacks. Install libbeachcomber instead. See https://beachcomber.sh"
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ { name = "NavistAu" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "License :: OSI Approved :: MIT License",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://beachcomber.sh"
22
+ Repository = "https://github.com/NavistAu/beachcomber"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["beachcomber_placeholder"]