-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (45 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (45 loc) · 1.04 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "huginn"
version = "1.0.0"
description = "论文智能分析系统"
requires-python = ">=3.11"
dependencies = [
# 核心: LLM & PDF 处理
"openai>=1.10.0",
"pymupdf>=1.23.21",
# 数据分析
"pandas>=2.2.0",
"numpy>=1.26.0",
# 文本处理 & 聚类
"jieba>=0.42.1",
"scikit-learn>=1.4.0",
"scipy>=1.11.0",
# Web 后端 (FastAPI)
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.6",
# 数据库
"sqlalchemy>=2.0.25",
"aiosqlite>=0.19.0",
# 认证
"python-jose[cryptography]>=3.3.0",
"passlib[argon2]>=1.7.4",
"python-dotenv>=1.0.0",
"email-validator>=2.0.0",
# 文件处理
"openpyxl>=3.1.0",
# 限流
"slowapi>=0.1.9",
# Pydantic
"pydantic>=2.5.3",
"pydantic-settings>=2.1.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
filterwarnings = [
"ignore::DeprecationWarning:pydantic.*",
]