[build-system]
|
requires = ["setuptools>=75", "wheel"]
|
build-backend = "setuptools.build_meta"
|
|
[project]
|
name = "geoai-workbench"
|
version = "0.1.0"
|
description = "Shared utilities for GeoAI capability demos"
|
requires-python = ">=3.11,<3.13"
|
dependencies = []
|
|
[tool.setuptools.packages.find]
|
where = ["src"]
|
|
[tool.ruff]
|
line-length = 100
|
target-version = "py311"
|
|
[tool.pytest.ini_options]
|
testpaths = ["tests"]
|
pythonpath = ["src"]
|
|
[tool.mypy]
|
python_version = "3.11"
|
warn_unused_configs = true
|
ignore_missing_imports = true
|