Skip to content

Commit

Permalink
Fix pip installation
Browse files Browse the repository at this point in the history
  • Loading branch information
r0x0r committed May 8, 2018
1 parent d823562 commit d4e2359
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from setuptools import setup

data_files = []
data_files.append(('webview/lib', ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']))


if platform.system() == "Windows":
data_files.append(('webview/lib', ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']))
extras_require = {
'win32': ['pywin32', 'comtypes'],
'winforms': ['pythonnet'],
Expand All @@ -32,10 +33,10 @@
data_files=data_files,
description=("A cross-platform lightweight native wrapper around a web view component"),
url="http://github.com/r0x0r/pywebview",
download_url="https://github.com/r0x0r/pywebview/archive/2.0.tar.gz",
download_url="https://github.com/r0x0r/pywebview/archive/2.0.1.tar.gz",
keywords=["gui", "webkit", "html", "web"],
extras_require=extras_require,
version="2.0",
version="2.0.1",
packages=["webview", "webview.js"],
license="New BSD license",
classifiers=[
Expand Down

0 comments on commit d4e2359

Please sign in to comment.