-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 1.83 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
73
74
[project]
name = "mcp-bauplan"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12,<3.15"
dependencies = [
"fastmcp~=3.4.2",
"gunicorn~=24.1.1",
"uvicorn[standard]~=0.49.0",
"bauplan>=0.1.16,<0.2.0",
"pydantic~=2.13.4",
"authlib~=1.7.2",
"joserfc~=1.7.0",
"cryptography~=49.0.0",
]
[project.optional-dependencies]
otel = [
"opentelemetry-distro==0.63b1",
"opentelemetry-exporter-otlp==1.42.1",
"opentelemetry-instrumentation-fastapi==0.63b1",
"opentelemetry-instrumentation-starlette==0.63b1",
"opentelemetry-instrumentation-logging==0.63b1",
"opentelemetry-instrumentation-asyncio==0.63b1",
"opentelemetry-instrumentation-requests==0.63b1",
"opentelemetry-instrumentation-urllib3==0.63b1",
"opentelemetry-instrumentation-grpc==0.63b1",
"opentelemetry-instrumentation-mcp~=0.61.0",
]
[project.scripts]
mcp-bauplan = "mcp_bauplan.app:main"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"pytest~=9.1.0",
"watchdog[watchmedo]~=6.0.0",
]
[tool.setuptools.packages.find]
include = ["mcp_bauplan*"]
[tool.setuptools.package-data]
"mcp_bauplan.auth" = ["templates/*.html", "templates/*.css", "templates/*.svg", "templates/*.ico"]
"mcp_bauplan.tools" = ["instructions/*.md"]
[tool.ruff]
fix = true
line-length = 110
exclude = [".venv"]
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle error
"W", # pycodestyle warning
"I", # isort
"B", # flake8-bugbear
"RUF", # Ruff-specific rules
]
ignore = [
"E501", # Line too long -- handled by ruff format; only docstrings/comments exceed the limit
"B008", # Do not perform function call in argument defaults -- required by FastMCP Depends()
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"