[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "lanhu-design-mcp" version = "0.2.0" description = "Android-first MCP server for reading Lanhu design specs and exporting UI restoration context" readme = "README.md" requires-python = ">=3.10" license = {text = "MIT"} authors = [ {name = "lantian"} ] keywords = ["lanhu", "design", "ui", "android", "mcp", "design-to-code"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Operating System :: MacOS", ] dependencies = [ "fastmcp>=2.0.0", "httpx>=0.27.0", "playwright>=1.50.0", ] [project.urls] Homepage = "https://github.com/blantian/lanhu-design-mcp" Repository = "https://github.com/blantian/lanhu-design-mcp" Issues = "https://github.com/blantian/lanhu-design-mcp/issues" [project.optional-dependencies] dev = [ "pytest>=7.4.0", "pytest-asyncio>=0.21.0", ] [project.scripts] lanhu-design-mcp = "lanhu_design_mcp.cli:main" [tool.setuptools.packages.find] where = ["src"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] asyncio_mode = "auto" addopts = "-q"