26 lines
740 B
TOML
26 lines
740 B
TOML
[project]
|
|
name = "excel-toolkit"
|
|
version = "0.1.0"
|
|
description = "Excel 文件智能处理工具"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"pandas>=1.5.0",
|
|
"openpyxl>=3.0.0",
|
|
"google-generativeai>=0.8.0",
|
|
"requests>=2.28.0",
|
|
# 引用本地 auth-runtime 包
|
|
"clawd-auth-runtime-py @ file:///${PROJECT_ROOT}/python_auth_runtime",
|
|
]
|
|
|
|
[project.scripts]
|
|
excel-read = "scripts.read_excel:main"
|
|
excel-merge = "scripts.merge_excel:main"
|
|
excel-replace = "scripts.replace_cells:main"
|
|
excel-filter = "scripts.filter_data:main"
|
|
excel-batch = "scripts.batch_process:main"
|
|
excel-translate = "scripts.translate_excel:main"
|
|
excel-auto = "scripts.auto_script:main"
|
|
|
|
[tool.uv]
|
|
index-url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|