-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "mouseion"
version = "0.1.0"
description = "Local-first personal knowledge base with SQLite hybrid search and MCP tools."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"anyio>=4.9.0",
"apsw>=3.53.1.0",
"fastapi>=0.115.0",
"httpx>=0.28.0",
"langchain-text-splitters>=0.3.8",
"mcp>=1.16.0",
"ollama>=0.5.0",
"pydantic>=2.11.0",
"pydantic-settings>=2.8.0",
"pymupdf>=1.25.0",
"python-magic>=0.4.27",
"python-multipart>=0.0.20",
"rich>=14.0.0",
"sqliteai-vector>=1.0.0",
"structlog>=25.1.0",
"tiktoken>=0.9.0",
"trafilatura>=2.0.0",
"uvicorn[standard]>=0.34.0",
]
[dependency-groups]
dev = [
"pyright>=1.1.389",
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"ruff>=0.9.0",
]
[project.scripts]
mouseion = "mouseion.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mouseion"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.pyright]
include = ["mouseion", "utilities"]
pythonVersion = "3.13"
typeCheckingMode = "strict"
reportUnusedFunction = false