File size: 539 Bytes
9682111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[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"]