pyproject.toml•601 B
[project]
name = "signal-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"mcp>=1.6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
server = "signal_mcp.main:main"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"python-dotenv>=1.0.0",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"ruff>=0.11.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[tool.hatch.build.targets.wheel]
packages = ["signal_mcp"]