Initial commit
This commit is contained in:
commit
6a1b671d79
3 changed files with 309 additions and 0 deletions
20
pyproject.toml
Normal file
20
pyproject.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[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*"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue