[project] name = "android-mcp-server" version = "0.1.0" description = "Android ADB MCP Server for device automation" authors = [ {name = "Ryan", email = "ryan@example.com"} ] dependencies = [ "fastmcp>=0.2.0", "pydantic>=2.0.0", ] requires-python = ">=3.11" [project.scripts] android-mcp-server = "src.server:main" [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "black>=23.0.0", "ruff>=0.1.0", "mypy>=1.5.0", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.uv] dev-dependencies = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "black>=23.0.0", "ruff>=0.1.0", "mypy>=1.5.0", ] [tool.black] line-length = 88 target-version = ['py311'] [tool.ruff] target-version = "py311" line-length = 88 [tool.mypy] python_version = "3.11" strict = true [tool.hatch.build.targets.wheel] packages = ["src"]