19 lines
373 B
TOML
19 lines
373 B
TOML
[project]
|
|
name = "notesearch"
|
|
version = "0.1.0"
|
|
description = "Local vector search over markdown notes using LlamaIndex + Ollama"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"llama-index",
|
|
"llama-index-embeddings-ollama",
|
|
]
|
|
|
|
[project.scripts]
|
|
notesearch = "notesearch.cli:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest"]
|