|
4 | 4 |
|
5 | 5 | install_requires = []
|
6 | 6 | if platform.system() == "Windows":
|
7 |
| - install_requires = ["comtypes", "pypiwin32"] |
| 7 | + install_requires = [] |
8 | 8 | elif platform.system() == "Darwin":
|
9 | 9 | install_requires = ["pyobjc"]
|
10 | 10 | elif platform.system() == "Linux":
|
11 |
| - install_requires = ["pygobject"] |
| 11 | + install_requires = [] |
12 | 12 |
|
13 | 13 | setup(
|
14 | 14 | name="pywebview",
|
15 | 15 | author="Roman Sirokov",
|
16 |
| - author_email = "[email protected]", |
17 |
| - description = ("A cross-platform lightweight native wrapper around a web view component"), |
18 |
| - url = "http://github.com/r0x0r/pywebview", |
19 |
| - download_url = "https://github.com/r0x0r/pywebview/archive/1.1.tar.gz", |
20 |
| - keywords = ["gui", "webkit", "html", "web"], |
21 |
| - install_requires = install_requires, |
22 |
| - version="1.1", |
| 16 | + |
| 17 | + description=("A cross-platform lightweight native wrapper around a web view component"), |
| 18 | + url="http://github.com/r0x0r/pywebview", |
| 19 | + download_url="https://github.com/r0x0r/pywebview/archive/1.2.tar.gz", |
| 20 | + keywords=["gui", "webkit", "html", "web"], |
| 21 | + install_requires=install_requires, |
| 22 | + version="1.2", |
23 | 23 | packages=["webview",],
|
24 | 24 | license="New BSD license",
|
25 | 25 | classifiers=[
|
|
0 commit comments