[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "playwright-mcp-server"
version = "1.0.0"
description = "MCP Server providing browser automation capabilities with Playwright"
requires-python = ">=3.13"
dependencies = [
"mcp-use>=1.0.0",
"playwright>=1.40.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]