Skip to content

Commit d4e2359

Browse files
committed
Fix pip installation
1 parent d823562 commit d4e2359

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
from setuptools import setup
44

55
data_files = []
6+
data_files.append(('webview/lib', ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']))
7+
68

79
if platform.system() == "Windows":
8-
data_files.append(('webview/lib', ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']))
910
extras_require = {
1011
'win32': ['pywin32', 'comtypes'],
1112
'winforms': ['pythonnet'],
@@ -32,10 +33,10 @@
3233
data_files=data_files,
3334
description=("A cross-platform lightweight native wrapper around a web view component"),
3435
url="http://github.com/r0x0r/pywebview",
35-
download_url="https://github.com/r0x0r/pywebview/archive/2.0.tar.gz",
36+
download_url="https://github.com/r0x0r/pywebview/archive/2.0.1.tar.gz",
3637
keywords=["gui", "webkit", "html", "web"],
3738
extras_require=extras_require,
38-
version="2.0",
39+
version="2.0.1",
3940
packages=["webview", "webview.js"],
4041
license="New BSD license",
4142
classifiers=[

0 commit comments

Comments
 (0)