Files
nmfs-agents/pyproject.toml
T

27 lines
579 B
TOML
Raw Normal View History

[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"]