08_17-AirCARE/bigwork/pyproject.toml
你的姓名 2cd200bd61 feat: 添加智能客服系统核心功能与数据分析模块
新增智能客服系统核心功能,包括推文分析、流失预测、趋势分析和危机评估模块。主要功能包括:
1. 分析推文数据找出最常见问题
2. 诊断流失预测系统问题
3. 数据驱动的智能关怀方案生成
4. 趋势分析和传播风险评估
5. 危机指数计算和DeepSeek集成

添加requirements.txt和更新pyproject.toml依赖
删除无用文件和子模块
2026-01-15 14:04:45 +08:00

54 lines
1000 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",
"lightgbm>=4.6.0",
"statsmodels>=0.14.6",
]
[[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"]