cross-domain-engine 1.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.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: cross-domain-engine
3
+ Version: 1.0.0
4
+ Summary: EVEZ cross-domain-engine
5
+ Author: Steven Crawford-Maggard
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # cross-domain-engine
11
+
12
+ Discover hidden correlations between disparate domains using EVEZ OODA loop + poly_c scoring.
13
+
14
+ ```bash
15
+ pip install cross-domain-engine
16
+ evez-crossdomain
17
+ ```
18
+
19
+ Part of the [EVEZ-OS](https://github.com/EvezArt/evez-os) autonomous AI mesh.
@@ -0,0 +1,10 @@
1
+ # cross-domain-engine
2
+
3
+ Discover hidden correlations between disparate domains using EVEZ OODA loop + poly_c scoring.
4
+
5
+ ```bash
6
+ pip install cross-domain-engine
7
+ evez-crossdomain
8
+ ```
9
+
10
+ Part of the [EVEZ-OS](https://github.com/EvezArt/evez-os) autonomous AI mesh.
@@ -0,0 +1 @@
1
+ # cross-domain-engine
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: cross-domain-engine
3
+ Version: 1.0.0
4
+ Summary: EVEZ cross-domain-engine
5
+ Author: Steven Crawford-Maggard
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # cross-domain-engine
11
+
12
+ Discover hidden correlations between disparate domains using EVEZ OODA loop + poly_c scoring.
13
+
14
+ ```bash
15
+ pip install cross-domain-engine
16
+ evez-crossdomain
17
+ ```
18
+
19
+ Part of the [EVEZ-OS](https://github.com/EvezArt/evez-os) autonomous AI mesh.
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ cross-domain-engine/__init__.py
5
+ cross_domain_engine.egg-info/PKG-INFO
6
+ cross_domain_engine.egg-info/SOURCES.txt
7
+ cross_domain_engine.egg-info/dependency_links.txt
8
+ cross_domain_engine.egg-info/top_level.txt
9
+ src/cross_domain_engine/__init__.py
10
+ src/cross_domain_engine/cli.py
@@ -0,0 +1,4 @@
1
+ build
2
+ cross-domain-engine
3
+ dist
4
+ src
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "cross-domain-engine"
7
+ version = "1.0.0"
8
+ description = "EVEZ cross-domain-engine"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [{name = "Steven Crawford-Maggard"}]
13
+
14
+ [tool.setuptools.packages.find]
15
+ where = ["."]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ from setuptools import setup, find_packages
2
+ setup(
3
+ name="placeholder",
4
+ version="1.0.0",
5
+ packages=find_packages(),
6
+ )
@@ -0,0 +1,6 @@
1
+ """
2
+ EVEZ Cross-Domain Engine — discover hidden correlations between disparate domains.
3
+ Uses OODA loop + poly_c scoring to surface serendipitous connections.
4
+ """
5
+ __version__ = "1.0.0"
6
+ __author__ = "Steven Crawford-Maggard"
@@ -0,0 +1,11 @@
1
+ """CLI entry point for cross-domain-engine."""
2
+ import sys
3
+
4
+ def main():
5
+ print("EVEZ Cross-Domain Engine v1.0.0")
6
+ print("Discovers hidden correlations between disparate domains via OODA + poly_c scoring.")
7
+ print("See https://evez-os.ai for full documentation.")
8
+ return 0
9
+
10
+ if __name__ == "__main__":
11
+ sys.exit(main())