mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-08 08:07:48 -04:00
Add pyqt5 example to pypi description
This commit is contained in:
parent
1765208f11
commit
05a118668b
7
setup.py
7
setup.py
@ -48,7 +48,9 @@ setup(
|
|||||||
author_email='colin.duquesnoy@gmail.com',
|
author_email='colin.duquesnoy@gmail.com',
|
||||||
description='A dark stylesheet for pyside/pyqt applications',
|
description='A dark stylesheet for pyside/pyqt applications',
|
||||||
long_description="""
|
long_description="""
|
||||||
This package provides a dark style sheet for PySide/PyQt applications.
|
This package provides a dark style sheet for PySide/PyQt4/PyQt5
|
||||||
|
applications.
|
||||||
|
|
||||||
All you have to do is the following::
|
All you have to do is the following::
|
||||||
|
|
||||||
import qdarkstyle
|
import qdarkstyle
|
||||||
@ -57,6 +59,9 @@ setup(
|
|||||||
app.setStyleSheet(qdarkstyle.load_stylesheet())
|
app.setStyleSheet(qdarkstyle.load_stylesheet())
|
||||||
# PyQt4
|
# PyQt4
|
||||||
app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=False))
|
app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=False))
|
||||||
|
# PyQt5
|
||||||
|
app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5())
|
||||||
|
|
||||||
""",
|
""",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user