bidmaster-cli/pyproject.toml
sladro 47fc26f3f0 feat: 初始化BidMaster-CLI项目
- 实现三层架构(CLI/Agent/Tools)
- 完成招标文件解析器(支持Excel/CSV/Word)
- 实现AI智能表格识别和分类
- 支持商务/技术评分项智能分离
- 实现RAG知识库管理
- 完成专业目录结构生成
- 修复编码规范违规问题

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-25 13:50:13 +08:00

31 lines
631 B
TOML

[project]
name = "bidmaster-cli"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"chromadb>=1.1.0",
"click>=8.3.0",
"langchain>=0.3.27",
"langchain-community>=0.3.29",
"langgraph>=0.6.7",
"openai>=1.109.1",
"openpyxl>=3.1.5",
"pandas>=2.3.2",
"pydantic-settings>=2.10.1",
"python-docx>=1.2.0",
"requests>=2.32.5",
"rich>=14.1.0",
"sentence-transformers>=5.1.1",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"isort>=6.0.1",
"pre-commit>=4.3.0",
"pytest>=8.4.2",
"ruff>=0.13.1",
]