fastmhs 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,12 @@
1
+ .venv/
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .pytest_cache/
8
+ .ruff_cache/
9
+ .DS_Store
10
+ .env
11
+ .env.*
12
+ pypi-token.txt
fastmhs-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Carl Lippert
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
fastmhs-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.5
2
+ Name: fastmhs
3
+ Version: 0.0.1
4
+ Summary: Wrap devices. Expose MHS, MCP, and a CLI. Not released yet.
5
+ Project-URL: Homepage, https://gofastmhs.com
6
+ Project-URL: Repository, https://github.com/carllippert/fastmhs
7
+ Author-email: Carl Lippert <carl@gofastmhs.com>
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: mcp,mhs,model-hardware-standard
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+
17
+ # FastMHS
18
+
19
+ Wrap a device. Expose MHS, MCP, and a CLI.
20
+
21
+ This package is **not released**. `pip install fastmhs` holds the name and prints where to get launch mail.
22
+
23
+ Updates: [gofastmhs.com](https://gofastmhs.com)
24
+
25
+ ```bash
26
+ pip install fastmhs
27
+ fastmhs
28
+ ```
29
+
30
+ The Model Hardware Standard is Anthropic’s. FastMHS is an independent wrapper, analogous to FastMCP, for serial, SiLA, PyVISA, ROS, and vendor SDKs.
@@ -0,0 +1,14 @@
1
+ # FastMHS
2
+
3
+ Wrap a device. Expose MHS, MCP, and a CLI.
4
+
5
+ This package is **not released**. `pip install fastmhs` holds the name and prints where to get launch mail.
6
+
7
+ Updates: [gofastmhs.com](https://gofastmhs.com)
8
+
9
+ ```bash
10
+ pip install fastmhs
11
+ fastmhs
12
+ ```
13
+
14
+ The Model Hardware Standard is Anthropic’s. FastMHS is an independent wrapper, analogous to FastMCP, for serial, SiLA, PyVISA, ROS, and vendor SDKs.
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "fastmhs"
7
+ version = "0.0.1"
8
+ description = "Wrap devices. Expose MHS, MCP, and a CLI. Not released yet."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Carl Lippert", email = "carl@gofastmhs.com" }]
13
+ keywords = ["mhs", "model-hardware-standard", "mcp"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+ urls.Homepage = "https://gofastmhs.com"
20
+ urls.Repository = "https://github.com/carllippert/fastmhs"
21
+
22
+ [project.scripts]
23
+ fastmhs = "fastmhs.__main__:main"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["src/fastmhs"]
@@ -0,0 +1,3 @@
1
+ """FastMHS — not released yet. https://gofastmhs.com"""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,7 @@
1
+ def main() -> None:
2
+ print("FastMHS is not released yet.")
3
+ print("Updates: https://gofastmhs.com")
4
+
5
+
6
+ if __name__ == "__main__":
7
+ main()