lorewiki 0.2.3__tar.gz → 0.2.4__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.
Files changed (39) hide show
  1. {lorewiki-0.2.3 → lorewiki-0.2.4}/PKG-INFO +4 -16
  2. {lorewiki-0.2.3 → lorewiki-0.2.4}/README.md +3 -15
  3. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/__init__.py +1 -1
  4. {lorewiki-0.2.3 → lorewiki-0.2.4}/pyproject.toml +1 -1
  5. {lorewiki-0.2.3 → lorewiki-0.2.4}/.gitignore +0 -0
  6. {lorewiki-0.2.3 → lorewiki-0.2.4}/LICENSE +0 -0
  7. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/__main__.py +0 -0
  8. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/__init__.py +0 -0
  9. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/add.py +0 -0
  10. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/apps.py +0 -0
  11. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/commands.py +0 -0
  12. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/config_cmds.py +0 -0
  13. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/helpers.py +0 -0
  14. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/cli/topic_cmds.py +0 -0
  15. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/config.py +0 -0
  16. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/__init__.py +0 -0
  17. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/connection.py +0 -0
  18. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/models.py +0 -0
  19. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/db/schema.sql +0 -0
  20. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/__init__.py +0 -0
  21. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/chunker.py +0 -0
  22. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/cleaning.py +0 -0
  23. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/indexer.py +0 -0
  24. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/indexer/parser.py +0 -0
  25. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/llm/__init__.py +0 -0
  26. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/llm/client.py +0 -0
  27. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/llm/generator.py +0 -0
  28. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/py.typed +0 -0
  29. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/__init__.py +0 -0
  30. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/base.py +0 -0
  31. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/bm25.py +0 -0
  32. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/fusion.py +0 -0
  33. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/hierarchy.py +0 -0
  34. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/search.py +0 -0
  35. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/retriever/vector.py +0 -0
  36. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/topic.py +0 -0
  37. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/utils/__init__.py +0 -0
  38. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/utils/logger.py +0 -0
  39. {lorewiki-0.2.3 → lorewiki-0.2.4}/lorewiki/utils/topic_shared.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lorewiki
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Local-first knowledge base for LLM-assisted coding, with hybrid retrieval (BM25 + hierarchy + optional vector) over SQLite FTS5.
5
5
  Project-URL: Documentation, https://github.com/JochenYang/Lore-wiki
6
6
  Project-URL: Source, https://github.com/JochenYang/Lore-wiki
@@ -105,10 +105,10 @@ it directly.
105
105
 
106
106
  ## Installation
107
107
 
108
- LoreWiki ships as a Python wheel on **PyPI** (canonical) with an
109
- **npm shim** that proxies to the same wheel. Pick one:
108
+ LoreWiki ships as a single Python wheel on **PyPI** (the only
109
+ distribution channel). Pick your preferred installer:
110
110
 
111
- ### Python (recommended, full feature set)
111
+ ### uv (recommended, full feature set)
112
112
 
113
113
  ```bash
114
114
  # Install — isolated per-tool venv, the lorewiki.exe (Windows)
@@ -145,18 +145,6 @@ pip install 'lorewiki[vector]' # opt-in: vector retrieval
145
145
  > The CLI + opencode skill replaced the FastAPI / MCP server surface.
146
146
  > The `[all]` extra is now an alias for `[vector]`.
147
147
 
148
- ### Node (npm shim, identical CLI)
149
-
150
- ```bash
151
- npm install -g lorewiki # postinstall calls `uv tool install lorewiki`
152
- npm install -g lorewiki@latest # upgrade
153
- npm uninstall -g lorewiki # also runs `uv tool uninstall lorewiki`
154
- ```
155
-
156
- The npm package is a thin shim — it spawns the Python `lorewiki` that
157
- the postinstall hook installed. See [`README.npm.md`](README.npm.md)
158
- for the full story.
159
-
160
148
  ### From source (for contributors)
161
149
 
162
150
  ```bash
@@ -61,10 +61,10 @@ it directly.
61
61
 
62
62
  ## Installation
63
63
 
64
- LoreWiki ships as a Python wheel on **PyPI** (canonical) with an
65
- **npm shim** that proxies to the same wheel. Pick one:
64
+ LoreWiki ships as a single Python wheel on **PyPI** (the only
65
+ distribution channel). Pick your preferred installer:
66
66
 
67
- ### Python (recommended, full feature set)
67
+ ### uv (recommended, full feature set)
68
68
 
69
69
  ```bash
70
70
  # Install — isolated per-tool venv, the lorewiki.exe (Windows)
@@ -101,18 +101,6 @@ pip install 'lorewiki[vector]' # opt-in: vector retrieval
101
101
  > The CLI + opencode skill replaced the FastAPI / MCP server surface.
102
102
  > The `[all]` extra is now an alias for `[vector]`.
103
103
 
104
- ### Node (npm shim, identical CLI)
105
-
106
- ```bash
107
- npm install -g lorewiki # postinstall calls `uv tool install lorewiki`
108
- npm install -g lorewiki@latest # upgrade
109
- npm uninstall -g lorewiki # also runs `uv tool uninstall lorewiki`
110
- ```
111
-
112
- The npm package is a thin shim — it spawns the Python `lorewiki` that
113
- the postinstall hook installed. See [`README.npm.md`](README.npm.md)
114
- for the full story.
115
-
116
104
  ### From source (for contributors)
117
105
 
118
106
  ```bash
@@ -1,4 +1,4 @@
1
1
  """LoreWiki - Local-first knowledge base for LLM-assisted coding."""
2
2
 
3
- __version__ = "0.2.3"
3
+ __version__ = "0.2.4"
4
4
  __all__ = ["__version__"]
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "lorewiki"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "Local-first knowledge base for LLM-assisted coding, with hybrid retrieval (BM25 + hierarchy + optional vector) over SQLite FTS5."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes