aucourt-ingest/pyproject.toml
slothitude d77fe12cfc AuCourtIngest: complete 8-stage Australian legal case ingestion pipeline
Source layer (5 court sources), processing pipeline (parse/extract/chunk/embed/graph),
property graph with 8 node types, juror subgraph queries with 6 personas,
orchestrator with bootstrap/watch/backfill/audit/process modes, 170 tests.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-30 11:56:23 +10:00

22 lines
478 B
TOML

[project]
name = "aucourt-ingest"
version = "0.1.0"
description = "Australian legal case ingestion pipeline"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
"beautifulsoup4>=4.12",
"python-docx>=1.1",
"pdfminer.six>=20221105",
"chromadb>=0.4",
"neo4j>=5.0",
"aiosqlite>=0.19",
"anthropic>=0.25",
"apscheduler>=3.10",
]
[project.scripts]
aucourt-ingest = "aucourt_ingest.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]