massiron 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.
- massiron-0.0.0/LICENSE +1 -0
- massiron-0.0.0/PKG-INFO +17 -0
- massiron-0.0.0/README.md +4 -0
- massiron-0.0.0/massiron/__init__.py +1 -0
- massiron-0.0.0/massiron.egg-info/PKG-INFO +17 -0
- massiron-0.0.0/massiron.egg-info/SOURCES.txt +8 -0
- massiron-0.0.0/massiron.egg-info/dependency_links.txt +1 -0
- massiron-0.0.0/massiron.egg-info/top_level.txt +1 -0
- massiron-0.0.0/pyproject.toml +19 -0
- massiron-0.0.0/setup.cfg +4 -0
massiron-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Proprietary. All rights reserved, massiron.
|
massiron-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: massiron
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: massiron — MCP orchestration hub & product hub for atlas, deepstrain, adauto: one GUI to discover, install, run, and keep them in sync.
|
|
5
|
+
Author: massiron
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://massiron.com
|
|
8
|
+
Keywords: massiron,mcp,orchestration,atlas,deepstrain,adauto
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# massiron
|
|
15
|
+
|
|
16
|
+
The MCP orchestration hub for the massiron product suite (atlas, deepstrain, adauto).
|
|
17
|
+
One GUI to discover, install, run, and keep them in sync. Coming soon.
|
massiron-0.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.0"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: massiron
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: massiron — MCP orchestration hub & product hub for atlas, deepstrain, adauto: one GUI to discover, install, run, and keep them in sync.
|
|
5
|
+
Author: massiron
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://massiron.com
|
|
8
|
+
Keywords: massiron,mcp,orchestration,atlas,deepstrain,adauto
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# massiron
|
|
15
|
+
|
|
16
|
+
The MCP orchestration hub for the massiron product suite (atlas, deepstrain, adauto).
|
|
17
|
+
One GUI to discover, install, run, and keep them in sync. Coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
massiron
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "massiron"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "massiron — MCP orchestration hub & product hub for atlas, deepstrain, adauto: one GUI to discover, install, run, and keep them in sync."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "massiron" }]
|
|
13
|
+
keywords = ["massiron", "mcp", "orchestration", "atlas", "deepstrain", "adauto"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://massiron.com"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
packages = ["massiron"]
|
massiron-0.0.0/setup.cfg
ADDED