-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "databutton-app-mcp"
version = "0.1.18"
description = "Call your Databutton app endpoints as LLM tools with MCP"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["databutton", "app", "mcp", "llm", "tool"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11"
dependencies = ["certifi>=2025.1.31", "httpx>=0.28.1", "websockets>=15.0.1"]
authors = [{ name = "Martin Sandve Alnæs", email = "msa@databutton.io" }]
maintainers = [{ name = "Martin Sandve Alnæs", email = "msa@databutton.io" }]
[project.urls]
Homepage = "https://databutton.com"
Repository = "https://github.com/databutton/databutton-app-mcp"
Documentation = "https://docs.databutton.com"
Support = "https://databutton.com/support"
Discord = "https://discord.gg/K9aHvmmFtH"
[project.scripts]
databutton-app-mcp = "databutton_app_mcp.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["src/databutton_app_mcp"]