23 lines
478 B
TOML
23 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"]
|