Skip to content

Commit 83cbb9f

Browse files
author
Roman Sirokov
committed
2.4 info
1 parent cd77fb5 commit 83cbb9f

File tree

2 files changed

+38
-30
lines changed

2 files changed

+38
-30
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
# Changelog
55

6+
## 2.4
7+
8+
_Released 17/02/2019_
9+
10+
- `New` [All] Support for frameless windows.
11+
- `Fix` [Windows] Fix broken installation of v2.3
12+
613
## 2.3
714

815
_Released 12/02/2019_

setup.py

+31-30
Original file line numberDiff line numberDiff line change
@@ -14,43 +14,44 @@
1414
]
1515

1616

17-
with open("README.md") as fh:
17+
with open('README.md') as fh:
1818
long_description = fh.read()
1919

2020
setup(
21-
name="pywebview",
22-
author="Roman Sirokov",
23-
author_email="[email protected]",
24-
description=("Build GUI for your Python program with JavaScript, HTML, and CSS."),
21+
name='pywebview',
22+
author='Roman Sirokov',
23+
author_email='[email protected]',
24+
description=('Build GUI for your Python program with JavaScript, HTML, and CSS.'),
2525
long_description=long_description,
26-
long_description_content_type="text/markdown",
27-
url="https://github.com/r0x0r/pywebview",
28-
download_url="https://github.com/r0x0r/pywebview/archive/2.3.tar.gz",
29-
keywords=["gui", "webkit", "html", "web"],
26+
long_description_content_type='text/markdown',
27+
url='https://github.com/r0x0r/pywebview',
28+
download_url='https://github.com/r0x0r/pywebview/archive/2.4.tar.gz',
29+
keywords=['gui', 'webkit', 'html', 'web'],
3030
install_requires=install_requires,
3131
extras_require=extras_require,
32-
version="2.3",
32+
version='2.4',
3333
include_package_data=True,
34-
packages=["webview", "webview.js"],
35-
package_data={"webview": ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']},
36-
license="New BSD license",
34+
packages=['webview', 'webview.js'],
35+
package_dir={'webview': 'webview'},
36+
package_data={'webview': ['sdfd', 'webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']},
37+
license='New BSD license',
3738
classifiers=[
38-
"Intended Audience :: Developers",
39-
"License :: OSI Approved :: BSD License",
40-
"Operating System :: OS Independent",
41-
"Environment :: MacOS X",
42-
"Environment :: Win32 (MS Windows)",
43-
"Environment :: X11 Applications :: GTK",
44-
"Environment :: X11 Applications :: Qt",
45-
"Programming Language :: Python",
46-
"Programming Language :: Python :: 2",
47-
"Programming Language :: Python :: 2.7",
48-
"Programming Language :: Python :: 3",
49-
"Programming Language :: Python :: 3.4",
50-
"Programming Language :: Python :: 3.5",
51-
"Programming Language :: Python :: 3.6",
52-
"Topic :: Software Development :: Libraries :: Application Frameworks",
53-
"Topic :: Software Development :: Libraries :: Python Modules",
54-
"Topic :: Software Development :: User Interfaces"
39+
'Intended Audience :: Developers',
40+
'License :: OSI Approved :: BSD License',
41+
'Operating System :: OS Independent',
42+
'Environment :: MacOS X',
43+
'Environment :: Win32 (MS Windows)',
44+
'Environment :: X11 Applications :: GTK',
45+
'Environment :: X11 Applications :: Qt',
46+
'Programming Language :: Python',
47+
'Programming Language :: Python :: 2',
48+
'Programming Language :: Python :: 2.7',
49+
'Programming Language :: Python :: 3',
50+
'Programming Language :: Python :: 3.4',
51+
'Programming Language :: Python :: 3.5',
52+
'Programming Language :: Python :: 3.6',
53+
'Topic :: Software Development :: Libraries :: Application Frameworks',
54+
'Topic :: Software Development :: Libraries :: Python Modules',
55+
'Topic :: Software Development :: User Interfaces'
5556
],
5657
)

0 commit comments

Comments
 (0)