Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
congzhangzh committed Nov 3, 2024
1 parent ae97a6b commit f4f9dc3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 0 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,3 @@ pythonpath = [
testpaths = [
"tests",
]

[tool.setuptools]
# Mark as a binary package since we distribute platform-specific libraries
# downloaded from webview_deno releases. This ensures platform-specific
# wheel generation even though we don't compile any source code.
ext-modules = [
{ name = "webview._platform_binary", sources = [] }
]
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import setup, Extension

setup(
ext_modules=[
Extension(
name='webview._platform_binary',
sources=[],
)
],
)

0 comments on commit f4f9dc3

Please sign in to comment.