20 lines
409 B
TOML
20 lines
409 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pastebin-mcp"
|
|
version = "0.1.0"
|
|
description = "MCP server for the homelab pastebin service"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp[cli]>=1.0",
|
|
"httpx>=0.28",
|
|
]
|
|
|
|
[project.scripts]
|
|
pastebin-mcp = "mcp_server:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["pastebin_mcp*"]
|