-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (73 loc) · 1.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling>=1.29.0,<2"]
build-backend = "hatchling.build"
[project]
name = "traccia"
version = "0.1.0"
description = "Local-first reflective skill graph compiler."
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"pydantic>=2.11,<3",
"pypdf>=6.10.2,<7",
"pyyaml>=6.0.3,<7",
"typer>=0.25.1,<0.26",
"python-docx>=1.1,<2",
"openpyxl>=3.1,<4",
"lxml>=6.1.0,<7",
]
[project.optional-dependencies]
docling = [
"docling>=2.90,<3",
]
marker = [
"marker-pdf",
]
markitdown = [
"markitdown",
]
document-markdown = [
"docling>=2.90,<3",
"marker-pdf",
"markitdown",
]
[project.scripts]
traccia = "traccia.cli:app"
[dependency-groups]
dev = [
"pytest>=9.0.3,<10",
"ruff>=0.15.11,<1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/traccia"]
[tool.hatch.build.targets.sdist]
only-include = [
".github/assets",
"CODEOWNERS",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"docs",
"npm",
"package.json",
"pyproject.toml",
"src",
"tests",
]
[tool.hatch.build]
exclude = [
"/.dora",
"/.pytest_cache",
"/.ruff_cache",
"/.venv",
"/dist",
"/scripts",
"/tmp",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["C4", "F", "I", "SIM", "UP"]