[project] name = "mcp-server-digitalocean" version = "0.1.1" description = "A Model Context Protocol server for DigitalOcean cloud infrastructure" readme = "README.md" requires-python = ">=3.10" authors = [{ name = "SOOQ ELASER" }] keywords = ["digitalocean", "cloud", "mcp", "llm", "infrastructure"] license = { text = "MIT" } 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", ] dependencies = [ "mcp>=1.0.0", "pydantic>=2.0.0", "httpx>=0.27.0", ] [project.scripts] mcp-server-digitalocean = "mcp_server_digitalocean:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.uv] dev-dependencies = [ "pyright>=1.1.389", "ruff>=0.7.3", "pytest>=8.0.0", "pytest-asyncio>=0.21.0", "respx>=0.21.0", ] [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" [tool.ruff] line-length = 88 target-version = "py310" [tool.ruff.lint] select = ["B", "F401", "E722", "UP"]