Files
nmfs-agents/pyproject.toml
T
qiuruiandClaude Sonnet 4.6 240d4ace5c fix(event_bus): 修复异常处理 + 补充 fakeredis dev 依赖
- _ensure_groups: 非 BUSYGROUP 异常改为 raise
- read_new: 移除静默吞异常,让调用方决定如何处理
- pyproject.toml dev: 新增 fakeredis>=2.0

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-09 23:28:07 +08:00

27 lines
579 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nmfs-agents"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"anthropic>=0.40.0",
"apscheduler>=3.10.0",
"aiohttp>=3.9.0",
"paramiko>=3.4.0",
"pyyaml>=6.0",
"redis>=5.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "fakeredis>=2.0"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = ["ignore::pytest.PytestCollectionWarning"]