miadi 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.
miadi-0.1.0/.gitignore ADDED
@@ -0,0 +1,70 @@
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+
6
+ # next.js
7
+ /.next/
8
+ /out/
9
+
10
+ # production
11
+ /build
12
+
13
+ # debug
14
+ npm-debug.log*
15
+ yarn-debug.log*
16
+ yarn-error.log*
17
+ .pnpm-debug.log*
18
+
19
+ # env files
20
+ .env*
21
+ !.env.example
22
+
23
+ # vercel
24
+ .vercel
25
+
26
+ # typescript
27
+ *.tsbuildinfo
28
+ next-env.d.ts
29
+ yarn.lock
30
+ .hch/
31
+ qlcli_session/
32
+ .env*
33
+ test.env
34
+ scripts/test-api-auth.sh
35
+
36
+ __pycache__/
37
+ *.egg-info
38
+ package-lock.json
39
+ node_modules
40
+ .mcp.json
41
+ .mcp.json*
42
+ medias/
43
+ .gemini/
44
+ .mcp*
45
+ mcp_server/dist/
46
+ .playwright-mcp/
47
+ mcp_server/mcp.sample.json
48
+ mcp_server/dummymemory.json
49
+ mcp_server/.vscode/settings.json
50
+
51
+
52
+ mcp_server/samples/
53
+
54
+ mcp_server/research/
55
+ mcp_server/tests/server.log
56
+ dist/
57
+ build/
58
+ cat_ignore_comments.sh
59
+ CHG__THREEWAY_TOKEN.sh
60
+ .gitignore
61
+ nextjs-dev.log
62
+ ngrokserve.sh.3333
63
+ issue_115_NewRepoWebHookAdded.md
64
+ *.mp3
65
+ RECENT_CHG_260104.md
66
+ .github-hooks/issues.bak
67
+ mcp_server/tst_claude/WillWrite-Miadi-Integration-Session.md
68
+ output/
69
+
70
+ scripts/logs/
miadi-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: miadi
3
+ Version: 0.1.0
4
+ Summary: Miadi Platform Wrapper
5
+ Project-URL: Homepage, https://github.com/jgwill/Miadi
6
+ Project-URL: Issues, https://github.com/jgwill/Miadi/issues
7
+ Author-email: Guillaume Isabelle <jgi@jgwill.com>
8
+ License-Expression: MIT
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+
15
+ # Miadi
16
+
17
+ Miadi is a narrative computing hub for distributed systems. This package serves as the primary wrapper for the Miadi platform.
18
+
19
+ ## Status
20
+
21
+ This package is currently a placeholder and wrapper for the broader Miadi platform components.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ pip install miadi
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ```bash
32
+ miadi --help
33
+ ```
miadi-0.1.0/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Miadi
2
+
3
+ Miadi is a narrative computing hub for distributed systems. This package serves as the primary wrapper for the Miadi platform.
4
+
5
+ ## Status
6
+
7
+ This package is currently a placeholder and wrapper for the broader Miadi platform components.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ pip install miadi
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```bash
18
+ miadi --help
19
+ ```
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "miadi"
7
+ version = "0.1.0"
8
+ description = "Miadi Platform Wrapper"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "Guillaume Isabelle", email = "jgi@jgwill.com" },
14
+ ]
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ]
20
+ dependencies = []
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/jgwill/Miadi"
24
+ Issues = "https://github.com/jgwill/Miadi/issues"
25
+
26
+ [project.scripts]
27
+ miadi = "miadi.__main__:main"
28
+
29
+ [tool.hatch.build.targets.wheel]
30
+ packages = ["src/miadi"]
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -0,0 +1,11 @@
1
+ import sys
2
+
3
+ def main():
4
+ print("Miadi Platform Wrapper")
5
+ print("----------------------")
6
+ print("This 'miadi' package will wrap the whole Miadi platform.")
7
+ print("Currently, it is a placeholder to reserve the name and provide a central entry point.")
8
+ print("Stay tuned for more updates.")
9
+
10
+ if __name__ == "__main__":
11
+ main()