From 05a118668b3f9d3657c59877f9d7168316578944 Mon Sep 17 00:00:00 2001 From: ColinDuquesnoy Date: Sat, 17 May 2014 21:03:55 +0200 Subject: [PATCH] Add pyqt5 example to pypi description --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9113baec8..c6c44af22 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,9 @@ setup( author_email='colin.duquesnoy@gmail.com', description='A dark stylesheet for pyside/pyqt applications', 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:: import qdarkstyle @@ -57,6 +59,9 @@ setup( app.setStyleSheet(qdarkstyle.load_stylesheet()) # PyQt4 app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=False)) + # PyQt5 + app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5()) + """, classifiers=[ 'Development Status :: 5 - Production/Stable',