[project] name = "haproxy-mcp" version = "1.0.0" description = "HAProxy MCP Server" requires-python = ">=3.11" dependencies = [ "mcp[cli]>=1.0.0", ] [project.optional-dependencies] test = [ "pytest>=8.0.0", "pytest-cov>=4.1.0", ] [tool.pytest.ini_options] testpaths = ["../tests"] pythonpath = ["."] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"] addopts = "-v --tb=short" filterwarnings = [ "ignore::DeprecationWarning", ]