Skip to content

Commit 87d7525

Browse files
committed
Removed PyQt from install_requires + updated README, ...
1 parent 5813e82 commit 87d7525

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

qwt/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
=========
1010
1111
The ``PythonQwt`` package is a 2D-data plotting library using Qt graphical
12-
user interfaces for the Python programming language.
12+
user interfaces for the Python programming language. It is compatible with
13+
both ``PyQt4`` and ``PyQt5`` (``PySide`` is currently not supported but it
14+
could be in the near future as it would "only" requires testing to support
15+
it as a stable alternative to PyQt).
1316
1417
It consists of a single Python package named `qwt` which is a pure Python
1518
implementation of Qwt C++ library with some limitations.

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727

2828
DESCRIPTION = 'Qt plotting widgets for Python'
2929
LONG_DESCRIPTION = """\
30+
The ``PythonQwt`` package is a 2D-data plotting library using Qt graphical
31+
user interfaces for the Python programming language. It is compatible with
32+
both ``PyQt4`` and ``PyQt5`` (``PySide`` is currently not supported but it
33+
could be in the near future as it would "only" requires testing to support
34+
it as a stable alternative to PyQt).
35+
3036
The ``PythonQwt`` project was initiated to solve -at least temporarily- the
3137
obsolescence issue of `PyQwt` (the Python-Qwt C++ bindings library) which is
3238
no longer maintained. The idea was to translate the original Qwt C++ code to
@@ -113,7 +119,7 @@ def run(self):
113119
packages=get_subpackages(PACKAGE_NAME),
114120
package_data={PACKAGE_NAME:
115121
get_package_data(PACKAGE_NAME, ('.png', '.svg', '.mo'))},
116-
install_requires=["PyQt4 (>4.3)", "NumPy (>=1.3)"],
122+
install_requires=["NumPy (>=1.3)"],
117123
extras_require = {
118124
'Doc': ["Sphinx>=1.1"],
119125
'Tests': ["guidata>=1.7.0"],

0 commit comments

Comments
 (0)