Skip to content

Commit 7b6b5a5

Browse files
hnykdagithub-actions[bot]
authored andcommitted
fix(everyrow-mcp): add src package for hatchling wheel build (#4952)
## Summary - Adds `src/everyrow_mcp/__init__.py` to the `everyrow-mcp` stub so hatchling can build the wheel (was missing, causing PyPI publish to fail) - Adds `[tool.hatch.build.targets.wheel] packages = ["src/everyrow_mcp"]` to match the `everyrow` stub pattern All 4 packages build successfully locally. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Sourced from commit a735ca6e90ec1cf5e16e958ea8b3f23cf0b4698f
1 parent ef37687 commit 7b6b5a5

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

stubs/everyrow-mcp/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = ["futuresearch-mcp>=0.6.0"]
88

9+
[tool.hatch.build.targets.wheel]
10+
packages = ["src/everyrow_mcp"]
11+
912
[project.scripts]
1013
everyrow-mcp = "futuresearch_mcp.server:main"
1114

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import warnings
2+
3+
warnings.warn(
4+
"The 'everyrow-mcp' package has been renamed to 'futuresearch-mcp'. "
5+
"Please update your dependencies: pip install futuresearch-mcp",
6+
DeprecationWarning,
7+
stacklevel=2,
8+
)

0 commit comments

Comments
 (0)