forked from Gen-Future/ExcelMind
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 758 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 758 Bytes
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
27
28
29
30
31
[project]
name = "excel-agent"
version = "2.0.0"
description = "Excel 智能问数 Agent - 基于 LangGraph 的 Excel 数据分析助手,支持双引擎读写"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"langchain>=0.3.0",
"langgraph>=0.2.0",
"langchain-openai>=0.2.0",
"langchain-anthropic>=0.2.0",
"pandas>=2.0.0",
"openpyxl>=3.1.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0",
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
"python-multipart>=0.0.9",
"chromadb>=0.4.0",
]
[project.scripts]
excel-agent = "excel_agent.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/excel_agent"]