Skip to content

Commit 28b15fb

Browse files
author
dalyzhou
committed
fix: add missing runtime dependencies in pyproject.toml
Several packages (colorama, fastapi, uvicorn, python-multipart, logfire) are imported in the source code but not declared in pyproject.toml, causing ModuleNotFoundError when installed via pip install.
1 parent 1d979fa commit 28b15fb

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ dependencies = [
5151
"psutil>=7.0.0",
5252
"PyYAML>=6.0.2",
5353
"mermaid-parser-py>=0.0.2",
54-
"mermaid-py>=0.8.0"
54+
"mermaid-py>=0.8.0",
55+
"fastapi>=0.116.0",
56+
"uvicorn>=0.35.0",
57+
"python-multipart>=0.0.20",
58+
"colorama>=0.4.6",
59+
"logfire>=4.1.0"
5560
]
5661

5762
[external]

0 commit comments

Comments
 (0)