Skip to content

Commit 2a2d54c

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents a1d9838 + ce18355 commit 2a2d54c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "cibuildwheel"]
2+
requires = ["setuptools>=61.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -27,4 +27,3 @@ stockfish-mcp = "stockfish_mcp.__main__:main"
2727

2828
[tool.setuptools.packages.find]
2929
namespaces = true
30-

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
packages=["stockfish_mcp", "stockfish_mcp.bin"],
5+
include_package_data=True,
6+
package_data={
7+
"stockfish_mcp.bin": ["*"],
8+
},
9+
)

0 commit comments

Comments
 (0)