08_17-AirCARE/bigwork/pyproject.toml
Your Name bd5d8d108c feat: 添加航空公司情感分析与智能客服系统初始代码
- 实现数据预处理模块(data.py)和模型训练模块(train.py)
- 添加智能客服Agent应用(agent_app.py)和DNA解码系统(dna_decoder.py)
- 包含补偿推荐系统(compensation_recommender.py)和可视化支持
- 添加项目配置文件(pyproject.toml)和README文档
- 提供多种启动脚本(start_app.*, fix_path_and_run.bat等)
2026-01-13 00:43:15 +08:00

52 lines
950 B
TOML

[project]
name = "airline-sentiment-analysis"
version = "1.0.0"
description = "航空公司情感分析与智能客服优先级系统"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.10",
"pandera>=0.21",
"pydantic-ai>=0.7",
"polars>=1.0",
"pandas>=2.2",
"scikit-learn>=1.5",
"xgboost>=3.1",
"seaborn>=0.13",
"joblib>=1.4",
"python-dotenv>=1.0",
"streamlit>=1.40",
"plotly>=5.0",
"networkx>=3.0",
"wordcloud>=1.9",
"jieba>=0.42",
]
[[tool.uv.index]]
url = "https://mirrors.aliyun.com/pypi/simple/"
default = true
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=1.3",
"ruff>=0.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]