-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (73 loc) · 1.83 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "maine-family-law-llm"
version = "7.0.0"
description = "Local-first Maine family-law research, evidence, drafting, and optional loopback local-model workbench with exact context approval and provenance receipts"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pypdf>=6.15,<7",
"pypdfium2>=5.12.1,<6",
"python-docx>=1.2.0,<2",
"defusedxml>=0.7.1,<1",
"docx-editor>=0.7.1,<0.8",
"pywin32>=311; sys_platform == 'win32'",
"cryptography>=50,<51",
"h2>=4.4.1,<5",
]
[project.scripts]
mfl = "maine_family_law_llm.cli:main"
[project.optional-dependencies]
api = [
"fastapi==0.139.2",
"starlette==1.3.1",
"uvicorn==0.52.4",
"httpx>=0.28.1,<1",
]
dev = ["pytest>=9,<10", "ruff>=0.14.14,<1", "httpx>=0.28.1,<1", "pip-audit==2.10.1"]
document-intelligence = [
"docling>=2.114.0,<3",
"presidio-analyzer>=2.2.363,<3",
"ocrmypdf>=17.8.1,<18",
"spacy>=3.8.0,<4",
"pikepdf>=10.0.0,<11",
"fpdf2>=2.8.0,<3",
"uharfbuzz>=0.41.0,<1",
]
retrieval-evaluation = ["sqlite-vec>=0.1.9,<0.2", "qdrant-client>=1.18.0,<2", "deepeval>=4.0.5,<5"]
release-hardening = [
"opentelemetry-api>=1.42.1,<2",
"opentelemetry-sdk>=1.42.1,<2",
"Pillow>=12.3.0,<13",
]
[tool.setuptools.packages.find]
where = [".", "src"]
include = ["app*", "legal*", "maine_family_law_llm*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "src"]
addopts = "-q"
filterwarnings = [
"ignore::DeprecationWarning"
]
[tool.ruff]
line-length = 100
target-version = "py311"
exclude = [
"runtime",
"uploads",
"vectorstores",
"corpora",
"node_modules",
"dist",
".venv",
"*.egg-info",
".eggs"
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]