madosho 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.
- madosho-0.0.1/.gitignore +34 -0
- madosho-0.0.1/PKG-INFO +16 -0
- madosho-0.0.1/README.md +6 -0
- madosho-0.0.1/pyproject.toml +18 -0
- madosho-0.0.1/src/madosho/__init__.py +3 -0
madosho-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
__pycache__/
|
|
3
|
+
.madosho/
|
|
4
|
+
dist/
|
|
5
|
+
*.egg-info/
|
|
6
|
+
|
|
7
|
+
# Secrets / local env -- never commit a real .env (keys live ONLY in your local copy).
|
|
8
|
+
# Copy .env.example -> .env and fill it in. See examples/*/.env.example too.
|
|
9
|
+
.env
|
|
10
|
+
.env.*
|
|
11
|
+
!.env.example
|
|
12
|
+
|
|
13
|
+
# Model weights -- never commit. Downloads happen via `docker compose` or the user
|
|
14
|
+
# (`hf download` into the shared HF cache, or llama.cpp `-hf` tags), never checked in.
|
|
15
|
+
*.gguf
|
|
16
|
+
*.bin
|
|
17
|
+
*.safetensors
|
|
18
|
+
*.pt
|
|
19
|
+
*.pth
|
|
20
|
+
*.onnx
|
|
21
|
+
*.ggml
|
|
22
|
+
*.ckpt
|
|
23
|
+
*.h5
|
|
24
|
+
*.npz
|
|
25
|
+
|
|
26
|
+
# Local-only material (editor/assistant state, private notes, scratch). Never tracked.
|
|
27
|
+
.claude/
|
|
28
|
+
.superpowers/
|
|
29
|
+
.tag-team/
|
|
30
|
+
/CLAUDE.md
|
|
31
|
+
/dev/
|
|
32
|
+
|
|
33
|
+
# dev-local compose overrides (mounts, host ports) - never committed
|
|
34
|
+
compose.override.yaml
|
madosho-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: madosho
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for madosho, a composable document-centric RAG platform. Placeholder release; real package coming soon.
|
|
5
|
+
Project-URL: Homepage, https://pypi.org/project/madosho/
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Keywords: madosho,placeholder,rag
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# madosho
|
|
12
|
+
|
|
13
|
+
Reserved name for **madosho**, a composable, document-centric RAG platform.
|
|
14
|
+
|
|
15
|
+
This is a placeholder release (`0.0.1`) that claims the project name on PyPI.
|
|
16
|
+
The real package will follow. See https://pypi.org/project/madosho/ for updates.
|
madosho-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "madosho"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name for madosho, a composable document-centric RAG platform. Placeholder release; real package coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
keywords = ["madosho", "rag", "placeholder"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://pypi.org/project/madosho/"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/madosho"]
|