| [project] | |
| name = "hf-mcp-server" | |
| version = "0.1.0" | |
| description = "A Model Context Protocol server exposing Hugging Face Inference capabilities" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "mcp>=1.0.0", | |
| "huggingface_hub>=0.27.0", | |
| "python-dotenv>=1.0.0", | |
| "requests>=2.0.0", | |
| "pillow>=10.0.0", # Added for image handling | |
| "uvicorn>=0.20.0", | |
| "sse-starlette>=1.8.0", | |
| ] | |
| [build-system] | |
| requires = ["hatchling"] | |
| build-backend = "hatchling.build" | |
| [tool.hatch.build.targets.wheel] | |
| packages = ["src"] | |