|
14 | 14 | ]
|
15 | 15 |
|
16 | 16 |
|
17 |
| -with open("README.md") as fh: |
| 17 | +with open('README.md') as fh: |
18 | 18 | long_description = fh.read()
|
19 | 19 |
|
20 | 20 | setup(
|
21 |
| - name="pywebview", |
22 |
| - author="Roman Sirokov", |
23 |
| - |
24 |
| - description=("Build GUI for your Python program with JavaScript, HTML, and CSS."), |
| 21 | + name='pywebview', |
| 22 | + author='Roman Sirokov', |
| 23 | + |
| 24 | + description=('Build GUI for your Python program with JavaScript, HTML, and CSS.'), |
25 | 25 | 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'], |
30 | 30 | install_requires=install_requires,
|
31 | 31 | extras_require=extras_require,
|
32 |
| - version="2.3", |
| 32 | + version='2.4', |
33 | 33 | 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', |
37 | 38 | 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' |
55 | 56 | ],
|
56 | 57 | )
|
0 commit comments