- 更新 pyproject.toml 中的包名 - 同步 uv.lock 中的包名 - 更新 README.md 中的项目目录和 Docker 镜像名称 - 更新 justfile 和 main.py 中的引用名称
18 lines
426 B
TOML
18 lines
426 B
TOML
[project]
|
|
name = "yield-smart-app"
|
|
version = "0.1.0"
|
|
description = "农业智能决策系统 - 基于多因子 Cobb-Douglas 产量模型的作物种植决策支持应用"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"numpy>=2.3.5",
|
|
"pandas>=2.3.3",
|
|
"plotly>=6.5.0",
|
|
"ruff>=0.14.8",
|
|
"streamlit==1.52.1",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://mirrors.aliyun.com/pypi/simple"
|
|
default = true
|