We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72aa0b2 commit 36bbf92Copy full SHA for 36bbf92
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "mcp-text-editor"
3
-version = "0.1.0"
+dynamic = ["version"]
4
description = "MCP Text Editor Server - Edit text files via MCP protocol"
5
authors = [
6
{ name = "tumf" }
@@ -74,4 +74,7 @@ explicit_package_bases = true
74
mypy_path = "src"
75
76
[tool.hatch.build.targets.wheel]
77
-packages = ["src/mcp_text_editor"]
+
78
79
+[tool.hatch.version]
80
+path = "src/mcp_text_editor/version.py"
src/mcp_text_editor/version.py
@@ -0,0 +1 @@
+__version__ = "0.0.0-dev"
0 commit comments