罗广辉
10 hours ago 7cc239cee1a9af4e2e8a0f3d5b7a00a074b17214
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
[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