Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2.4 info
  • Loading branch information
Roman Sirokov committed Feb 17, 2019
1 parent cd77fb5 commit 83cbb9f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 30 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,13 @@

# Changelog

## 2.4

_Released 17/02/2019_

- `New` [All] Support for frameless windows.
- `Fix` [Windows] Fix broken installation of v2.3

## 2.3

_Released 12/02/2019_
Expand Down
61 changes: 31 additions & 30 deletions setup.py
Expand Up @@ -14,43 +14,44 @@
]


with open("README.md") as fh:
with open('README.md') as fh:
long_description = fh.read()

setup(
name="pywebview",
author="Roman Sirokov",
author_email="roman@flowrl.com",
description=("Build GUI for your Python program with JavaScript, HTML, and CSS."),
name='pywebview',
author='Roman Sirokov',
author_email='roman@flowrl.com',
description=('Build GUI for your Python program with JavaScript, HTML, and CSS.'),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/r0x0r/pywebview",
download_url="https://github.com/r0x0r/pywebview/archive/2.3.tar.gz",
keywords=["gui", "webkit", "html", "web"],
long_description_content_type='text/markdown',
url='https://github.com/r0x0r/pywebview',
download_url='https://github.com/r0x0r/pywebview/archive/2.4.tar.gz',
keywords=['gui', 'webkit', 'html', 'web'],
install_requires=install_requires,
extras_require=extras_require,
version="2.3",
version='2.4',
include_package_data=True,
packages=["webview", "webview.js"],
package_data={"webview": ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']},
license="New BSD license",
packages=['webview', 'webview.js'],
package_dir={'webview': 'webview'},
package_data={'webview': ['sdfd', 'webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']},
license='New BSD license',
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: GTK",
"Environment :: X11 Applications :: Qt",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces"
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: GTK',
'Environment :: X11 Applications :: Qt',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces'
],
)

0 comments on commit 83cbb9f

Please sign in to comment.