We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1d9838 + ce18355 commit 2a2d54cCopy full SHA for 2a2d54c
pyproject.toml
@@ -1,5 +1,5 @@
1
[build-system]
2
-requires = ["setuptools>=61.0", "cibuildwheel"]
+requires = ["setuptools>=61.0"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
@@ -27,4 +27,3 @@ stockfish-mcp = "stockfish_mcp.__main__:main"
27
28
[tool.setuptools.packages.find]
29
namespaces = true
30
-
setup.py
@@ -0,0 +1,9 @@
+from setuptools import setup, find_packages
+
+setup(
+ packages=["stockfish_mcp", "stockfish_mcp.bin"],
+ include_package_data=True,
6
+ package_data={
7
+ "stockfish_mcp.bin": ["*"],
8
+ },
9
+)
0 commit comments