-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (62 loc) · 1.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "mcp-server-appwrite"
dynamic = ["version"]
description = "MCP server for Appwrite: manage projects and their databases, auth, storage, functions, messaging, and sites, and search the official Appwrite documentation"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"anyio>=4.0.0",
"appwrite-console>=0.6.0,<0.7",
"docstring-parser>=0.16",
"mcp[cli]>=2,<3",
"python-dotenv>=1.0.1",
"starlette>=0.40.0",
"uvicorn[standard]>=0.30.0",
"httpx>=0.27.0",
"pyjwt[crypto]>=2.9.0",
"numpy>=2.0",
"openai>=1.40",
"opentelemetry-api>=1.28",
"opentelemetry-sdk>=1.28",
"opentelemetry-exporter-otlp-proto-http>=1.28",
"sentry-sdk[starlette]>=2.0",
]
[project.optional-dependencies]
integration = [
"argon2-cffi>=23.1.0",
"bcrypt>=4.1.2",
"passlib>=1.7.4",
"pycryptodome>=3.20.0",
]
[dependency-groups]
dev = [
"black==26.3.1",
"ruff==0.15.18",
"pyright==1.1.411",
]
[project.scripts]
mcp-server-appwrite = "mcp_server_appwrite.__main__:main"
[tool.hatch.build.targets.wheel]
# Ship the prebuilt docs search index (non-.py package data) in the wheel.
artifacts = ["src/mcp_server_appwrite/data/*", "src/mcp_server_appwrite/assets/*"]
[tool.hatch.version]
source = "vcs"
[tool.black]
target-version = ["py312"]
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
# E/W: pycodestyle, F: pyflakes (real bugs), I: import sorting.
# Line length (E501) is owned by black, so it is disabled here.
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.pyright]
pythonVersion = "3.12"
include = ["src"]
venvPath = "."
venv = ".venv"
typeCheckingMode = "basic"
[build-system]
requires = ["hatchling==1.32.0", "hatch-vcs==0.5.0"]
build-backend = "hatchling.build"