Files
d4c-infra-distribution/scripts/06_call_http_ingestor/pyproject.toml
T

21 lines
524 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[project]
name = "d4c-http-ingestor"
version = "0.1.0"
description = "CLI caller for the Cloudflare HTTP ingestor worker orchestrates concurrent downloads, persists results to SQLite, and exports Parquet."
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
"pyarrow>=15",
"rich>=13",
]
[project.scripts]
d4c-http-ingestor = "d4c_http_ingestor.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/d4c_http_ingestor"]