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 fbc1992 commit c2d76eaCopy full SHA for c2d76ea
Makefile
@@ -1,6 +1,7 @@
1
.PHONY: test format lint typecheck check
2
3
test:
4
+ pip install -e .
5
pytest
6
7
format:
@@ -15,7 +16,7 @@ lint:
15
16
ruff check .
17
18
typecheck:
- mypy mcp_shell_server tests
19
+ mypy src/mcp_shell_server tests
20
21
# Run all checks required before pushing
22
check: lint typecheck test
pyproject.toml
@@ -65,4 +65,7 @@ profile = "black"
65
line_length = 88
66
67
[tool.hatch.version]
68
-path = "mcp_shell_server/version.py"
+path = "src/mcp_shell_server/version.py"
69
+
70
+[tool.hatch.build.targets.wheel]
71
+packages = ["src/mcp_shell_server"]
mcp_shell_server/__init__.py renamed to src/mcp_shell_server/__init__.py
mcp_shell_server/server.py renamed to src/mcp_shell_server/server.py
mcp_shell_server/shell_executor.py renamed to src/mcp_shell_server/shell_executor.py
mcp_shell_server/version.py renamed to src/mcp_shell_server/version.py
0 commit comments