-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrequirements.txt
More file actions
112 lines (88 loc) · 2.13 KB
/
requirements.txt
File metadata and controls
112 lines (88 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# 用于IEEE SP论文下载的HTTP2支持
# Pin httpx for Starlette TestClient compatibility on Py3.9 (avoid metaclass conflict in httpx 0.28+)
httpx[http2]>=0.27.0,<0.28.0
# 基础依赖
requests>=2.28.0
urllib3>=1.26.0
lxml>=4.9.0
beautifulsoup4>=4.11.0
# 异步处理
aiohttp>=3.8.0
aiofiles>=22.1.0
# PDF处理
pdfplumber>=0.7.0
PyPDF2>=3.0.0
# 数据处理
pandas>=1.5.0
numpy>=1.24.0
# 配置管理
pyyaml>=6.0
python-dotenv>=0.19.0
cryptography>=41.0.0
keyring>=25.0.0
# 配置模型(需要 EmailStr 支持)
pydantic[email]>=2.0.0
# 日志和调试
colorlog>=6.7.0
loguru>=0.7.0
# 代码分析(可选)
gitpython>=3.1.0
pygithub>=1.58.0
# 开发工具(可选)
pytest>=7.2.0
pytest-asyncio>=0.21.0
black>=22.0.0
flake8>=5.0.0
# AI SDK
anthropic>=0.3.0
# NOTE: claude-agent-sdk is not available on PyPI / may require newer Python.
# Keep it optional (install manually if needed).
# claude-agent-sdk>=0.1.0
# Code Analysis
radon>=5.1.0
safety>=2.3.0
# Docker sandbox
docker>=7.0.0
# E2B cloud sandbox (optional)
e2b-code-interpreter>=1.0.0
# Report Engine
weasyprint>=62.3
json-repair>=0.22.0
jinja2>=3.1.0
markdown>=3.4.0
# FastAPI backend for CLI/Web
fastapi==0.115.0
python-multipart>=0.0.6 # Required for file uploads
# Pin Starlette for Python 3.9 compatible TestClient (avoid metaclass conflicts in newer Starlette)
starlette>=0.37.2,<0.39.0
uvicorn[standard]>=0.32.0
sse-starlette>=2.1.0
watchdog>=4.0.0
# Run/Event persistence (Phase 1A)
SQLAlchemy>=2.0.0
alembic>=1.13.0
psycopg[binary]>=3.2.0
# Testing & mocks
pytest-mock>=3.12.0
respx>=0.21.0
aioresponses>=0.7.6
# Task queue / scheduling (P1)
arq>=0.25.0,<0.26.0
redis>=5.0.0
# AI SDK (ensure consistent installs)
openai>=1.0.0
# Multi-channel push notifications
apprise>=1.9.0
# RSS/Atom feed generation
feedgen>=1.0.0
# Vector search (optional — graceful fallback to FTS5 if unavailable)
sqlite-vec>=0.1.6
# Fuzzy string matching for paper deduplication
rapidfuzz>=3.0.0
# Authentication (JWT + password hashing)
python-jose[cryptography]>=3.3.0
bcrypt>=4.0.0
email-validator>=2.0.0
resend>=0.7.0
# MCP server transport
mcp[fastmcp]>=1.8.0,<2.0.0; python_version >= "3.10"