Spaces:
Sleeping
Sleeping
File size: 832 Bytes
ad5ec6b 8ba44ad ad5ec6b d8d4856 ad5ec6b d8d4856 c88725f cb3558e | 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 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gazet"
version = "0.1.0"
description = "Lean natural-language geocoder with GIS operations over Overture and Natural Earth parquet datasets"
requires-python = ">=3.13.0, <3.14"
dependencies = [
"duckdb>=1.4.4",
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"dspy>=3.1.3",
"pandas>=2.2",
"pydantic>=2.0",
"pyarrow>=17.0.0",
"geopandas>=1.1.2",
"httpx>=0.28.1",
"sqlparse>=0.5.5",
]
optional-dependencies = { demo = ["streamlit", "requests", "pydeck"], dev = ["ruff"] }
[project.scripts]
gazet-dataset = "dataset.scripts.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/gazet", "dataset"]
[dependency-groups]
dataset = [
"modal>=1.4.0",
]
dev = [
"huggingface-hub[cli]>=1.5.0",
]
|