-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.57 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "verinote"
version = "0.0.1"
description = "Honest knowledge base: an LLM extracts source-backed facts, DuckDB-backed Datalog verifies them. Local web app."
readme = "README.md"
requires-python = ">=3.11"
license = "MPL-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Justin Kim" }]
keywords = ["knowledge-base", "datalog", "duckdb", "fact-extraction", "neurosymbolic", "verification"]
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"jinja2>=3.1",
"python-multipart>=0.0.9",
"duckdb>=1.0",
]
[project.optional-dependencies]
# LLM providers are optional so the app installs without any single vendor SDK
# (anti-lock-in: pick whichever you have a key for, or run Ollama locally).
anthropic = ["anthropic>=0.40"]
openai = ["openai>=1.40"]
analytics = []
wirelog = ["pyrewire>=1.0.1,<2.0"]
# Binary source ingestion (docx/pdf -> text). Optional so the core stays light.
ingest = ["python-docx>=1.1", "pypdf>=4.0"]
test = ["pytest>=7", "httpx2>=2.5", "python-docx>=1.1"]
[project.scripts]
verinote = "verinote.cli:main"
[project.urls]
Homepage = "https://github.com/semantic-reasoning/verinote"
[tool.setuptools]
packages = [
"verinote",
"verinote.llm",
"verinote.engine",
"verinote.store",
"verinote.pipeline",
"verinote.web",
]
[tool.setuptools.package-data]
"verinote.store" = ["*.sql"]
"verinote.web" = ["templates/*.html", "templates/partials/*.html", "static/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"