mirror of
https://github.com/dataforcanada/d4c-service-geo-assistant.git
synced 2026-06-13 22:41:01 +02:00
24c53b66e3
* wip buffer tool * add search area to attribute * add geopandas dependency * add buffer tool and fix graph to add in the overture tool * make async * simpler buffering * cleaner comments Co-authored-by: Wei Ji <23487320+weiji14@users.noreply.github.com> * Change from FeatureCollection to Feature And ensure that output search area is a Polygon * update test comments * remove unhelpful test checks --------- Co-authored-by: Wei Ji <23487320+weiji14@users.noreply.github.com> Co-authored-by: Daniel Wiesmann <yellowcap@users.noreply.github.com>
44 lines
769 B
TOML
44 lines
769 B
TOML
[project]
|
|
name = "geo-assistant"
|
|
version = "0.0.1"
|
|
description = "Geo Assistant"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"langgraph",
|
|
"fastapi",
|
|
"pydantic",
|
|
"geojson_pydantic",
|
|
"streamlit",
|
|
"httpx",
|
|
"uvicorn[standard]",
|
|
"langchain-ollama",
|
|
"langchain",
|
|
"python-dotenv",
|
|
"duckdb",
|
|
"shapely",
|
|
"geopandas>=1.1.1",
|
|
"dspy>=3.0.4",
|
|
"watchdog>=6.0.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff",
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
"pre-commit",
|
|
"jupyterlab>=4.5.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/geo_assistant"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--color=yes"
|
|
asyncio_mode = "auto"
|