[build-system] requires = ["hatchling>=1.24"] build-backend = "hatchling.build" [project] name = "harbor-registry-mcp" version = "0.2.0" description = "MCP server for Harbor Registry — projects, repos, artifacts, storage reports, cleanup" readme = "README.md" license = "MIT" requires-python = ">=3.10" authors = [ { name = "Mikhail Shchegolev" }, ] keywords = ["mcp", "harbor", "container-registry", "docker", "devops", "claude", "anthropic"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: System :: Archiving :: Packaging", "Topic :: Software Development :: Build Tools", ] dependencies = [ "mcp>=1.2,<2", "requests>=2.31", "urllib3>=2.0", "pydantic>=2.0", "typing-extensions>=4.5; python_version < '3.12'", ] [project.optional-dependencies] dev = [ "pytest>=7", "ruff>=0.5", "responses>=0.25", ] [project.scripts] harbor-registry-mcp = "harbor_registry_mcp.server:main" [project.urls] Homepage = "https://github.com/mshegolev/harbor-registry-mcp" Issues = "https://github.com/mshegolev/harbor-registry-mcp/issues" [tool.hatch.build.targets.wheel] packages = ["src/harbor_registry_mcp"] [tool.ruff] line-length = 120 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "W", "I", "B", "UP"]