Skip to content

Commit a63ca94

Browse files
RFingAdamclaude
andcommitted
Fix pyproject.toml: move dependencies from [project.urls] to [project]
The `dependencies` list was incorrectly nested under `[project.urls]` instead of `[project]`, causing hatchling to fail with: "URL `dependencies` of field `project.urls` must be a string" Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 106ea05 commit a63ca94

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ classifiers = [
2626
"Topic :: Scientific/Engineering :: Physics",
2727
]
2828

29+
dependencies = [
30+
"mcp>=1.0.0",
31+
]
32+
2933
[project.urls]
3034
Homepage = "https://github.com/RFingAdam/mcp-cst-studio"
3135
Repository = "https://github.com/RFingAdam/mcp-cst-studio"
3236
Issues = "https://github.com/RFingAdam/mcp-cst-studio/issues"
33-
dependencies = [
34-
"mcp>=1.0.0",
35-
]
3637

3738
[project.optional-dependencies]
3839
dev = [

0 commit comments

Comments
 (0)