mmind 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.
mmind-0.0.1/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ dist/
2
+ node_modules/
3
+ *.egg-info/
4
+ __pycache__/
mmind-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 femto
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.
mmind-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: mmind
3
+ Version: 0.0.1
4
+ Summary: Minimal utilities for Minion Mind integrations
5
+ Author: femto
6
+ License-Expression: MIT
7
+ License-File: LICENSE
8
+ Keywords: agent,knowledge,mind
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.9
13
+ Description-Content-Type: text/markdown
14
+
15
+ # mmind
16
+
17
+ Minimal utilities for Minion Mind integrations. This package currently reserves
18
+ the `mmind` namespace for upcoming functionality.
19
+
20
+ ## JavaScript
21
+
22
+ ```js
23
+ import { info } from "mmind";
24
+
25
+ console.log(info());
26
+ ```
27
+
28
+ ## Python
29
+
30
+ ```python
31
+ from mmind import info
32
+
33
+ print(info())
34
+ ```
mmind-0.0.1/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # mmind
2
+
3
+ Minimal utilities for Minion Mind integrations. This package currently reserves
4
+ the `mmind` namespace for upcoming functionality.
5
+
6
+ ## JavaScript
7
+
8
+ ```js
9
+ import { info } from "mmind";
10
+
11
+ console.log(info());
12
+ ```
13
+
14
+ ## Python
15
+
16
+ ```python
17
+ from mmind import info
18
+
19
+ print(info())
20
+ ```
mmind-0.0.1/index.js ADDED
@@ -0,0 +1,6 @@
1
+ /** Return basic metadata for the mmind package. */
2
+ export function info() {
3
+ return { name: "mmind", version: "0.0.1" };
4
+ }
5
+
6
+ export default { info };
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "mmind",
3
+ "version": "0.0.1",
4
+ "description": "Minimal utilities for Minion Mind integrations",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "exports": "./index.js",
8
+ "files": [
9
+ "index.js",
10
+ "README.md"
11
+ ],
12
+ "scripts": {
13
+ "test": "node --test"
14
+ },
15
+ "keywords": [
16
+ "mind",
17
+ "knowledge",
18
+ "agent"
19
+ ],
20
+ "license": "MIT"
21
+ }
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "mmind"
7
+ version = "0.0.1"
8
+ description = "Minimal utilities for Minion Mind integrations"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "MIT"
12
+ authors = [{ name = "femto" }]
13
+ keywords = ["mind", "knowledge", "agent"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["src/mmind"]
@@ -0,0 +1,8 @@
1
+ """Minimal utilities for Minion Mind integrations."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def info() -> dict[str, str]:
7
+ """Return basic package metadata."""
8
+ return {"name": "mmind", "version": __version__}