罗广辉
10 mins ago 2e68b1338ea04125ce4360e6d2ddf03f54df86ac
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