gr-mcp/pyproject.toml
2025-04-27 22:35:21 +03:00

24 lines
430 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gnuradio-mcp"
version = "0.1.0"
description = "A FastMCP server for gnuradio."
requires-python = ">=3.13"
dependencies = [
"pydantic",
"fastmcp"
]
[project.optional-dependencies]
dev = [
"pytest >= 7.0",
"pre-commit"
]
[tool.pytest.ini_options]
# Tell pytest where to find the package
pythonpath = ["src"]