2026-03-09 23:25:08 +08:00
|
|
|
[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]
|
2026-03-09 23:28:07 +08:00
|
|
|
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "fakeredis>=2.0"]
|
2026-03-09 23:25:08 +08:00
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
filterwarnings = ["ignore::pytest.PytestCollectionWarning"]
|