-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.06 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "offlineaid-pack-builder"
version = "0.1.0"
description = "Offline knowledge pack builder skill — SQLite FTS5 + optional corpus-derived vectors. Source-agnostic, zero external dependencies."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "Helen Kwok" },
]
# Zero runtime dependencies — packager.py uses only Python stdlib
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
agent = [
"openai>=1.0",
"pydantic-ai",
"deepagents",
"langgraph",
"langchain",
"langchain-core",
"langchain-ollama",
"pydantic",
]
ocr = [
"marker-pdf",
]
scrape = [
"scrapy>=2.15.2",
"html2text>=2024.2.26",
]
upload = [
"kaggle>=2.1.0",
]
[project.scripts]
packager = "packager:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
tmp_path_retention_policy = "none"
[tool.hatch.build.targets.wheel]
include = [
"/packager.py",
]
[dependency-groups]
dev = [
"pyarrow>=24.0.0",
]