requirements.txt 368 B

1234567891011
  1. # Webnovel Writer - Python Dependencies
  2. # Python >= 3.10 required
  3. # 核心依赖
  4. aiohttp>=3.8.0 # 异步 HTTP 客户端(API 调用)
  5. filelock>=3.0.0 # 文件锁(状态文件并发控制)
  6. pydantic>=2.0.0 # Schema 校验
  7. # 可选依赖(开发/测试)
  8. pytest>=7.0.0 # 单元测试
  9. pytest-cov>=4.1.0 # 覆盖率统计