Skip to content

Commit 85b8c4d

Browse files
committed
Renamed project: python-qwt --> PythonQwt
1 parent 38599c8 commit 85b8c4d

28 files changed

+54
-54
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Sphinx. See the Overview section for API limitations when comparing to Qwt.
1313
## Version 0.1.1
1414

1515
Fixed Issue #21 (blocking issue *only* on non-Windows platforms when building
16-
the package): typo in "python-qwt-tests" script name (setup.py)
16+
the package): typo in "PythonQwt-tests" script name (setup.py)
1717

1818
## Version 0.1.0
1919

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# python-qwt
1+
# PythonQwt
22

33
## Purpose and Motivation
44

5-
The ``python-qwt`` project was initiated to solve -at least temporarily-
5+
The ``PythonQwt`` project was initiated to solve -at least temporarily-
66
the obsolescence issue of `PyQwt` (the Python-Qwt C++ bindings library)
77
which is no longer maintained. The idea was to translate the original
88
Qwt C++ code to Python and then to optimize some parts of the code by
99
writing new modules based on NumPy and other libraries.
1010

11-
The ``python-qwt`` package consists of a single Python package named
11+
The ``PythonQwt`` package consists of a single Python package named
1212
`qwt` and of a few other files (examples, doc, ...).
1313

1414
## Copyrights
@@ -17,7 +17,7 @@ The ``python-qwt`` package consists of a single Python package named
1717
- Copyright © 2002 Uwe Rathmann, for the original Qwt C++ code
1818
- Copyright © 2015 Pierre Raybaut, for the Qwt C++ to Python
1919
translation and optimization
20-
- Copyright © 2015 Pierre Raybaut, for the python-qwt specific and
20+
- Copyright © 2015 Pierre Raybaut, for the PythonQwt specific and
2121
exclusive Python material
2222

2323
#### PyQt, PySide and Python2/Python3 compatibility modules
@@ -27,7 +27,7 @@ exclusive Python material
2727
#### Some examples
2828
- Copyright © 2003-2009 Gerard Vermeulen, for the original PyQwt code
2929
- Copyright © 2015 Pierre Raybaut, for the PyQt5/PySide port and
30-
further developments (e.g. ported to python-qwt API)
30+
further developments (e.g. ported to PythonQwt API)
3131

3232
## License
3333

@@ -50,7 +50,7 @@ Only the following plot items are currently implemented in `qwt` (the
5050
only plot items needed by `guiqwt`): `QwtPlotItem` (base class),
5151
`QwtPlotItem`, `QwtPlotMarker`, `QwtPlotSeriesItem` and `QwtPlotCurve`.
5252

53-
See "Overview" section in [documentation](http://pythonhosted.org/python-qwt/)
53+
See "Overview" section in [documentation](http://pythonhosted.org/PythonQwt/)
5454
for more details on API limitations when comparing to Qwt.
5555

5656
## Dependencies
@@ -78,4 +78,4 @@ from qwt import tests
7878
tests.run()
7979
```
8080

81-
or from the command line: `python-qwt-tests`.
81+
or from the command line: `PythonQwt-tests`.

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
master_doc = 'index'
4242

4343
# General information about the project.
44-
project = 'python-qwt'
44+
project = 'PythonQwt'
4545
import time
4646
this_year = time.strftime("%Y", time.localtime())
4747
copyright = "2002 Uwe Rathmann (for the original C++ code/doc), 2015 Pierre Raybaut (for the Python translation/optimization/doc adaptation)"
@@ -168,7 +168,7 @@
168168
#html_file_suffix = ''
169169

170170
# Output file base name for HTML help builder.
171-
htmlhelp_basename = 'python-qwt'
171+
htmlhelp_basename = 'PythonQwt'
172172

173173

174174
# -- Options for LaTeX output --------------------------------------------------
@@ -182,7 +182,7 @@
182182
# Grouping the document tree into LaTeX files. List of tuples
183183
# (source start file, target name, title, author, documentclass [howto/manual]).
184184
latex_documents = [
185-
('index', 'qwt.tex', 'python-qwt Documentation', 'Pierre Raybaut', 'manual'),
185+
('index', 'qwt.tex', 'PythonQwt Manual', 'Pierre Raybaut', 'manual'),
186186
]
187187

188188
# The name of an image file (relative to this directory) to place at the top of

doc/examples/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A lot of examples are available in the `qwt.test` module ::
1111
from qwt import tests
1212
tests.run()
1313

14-
The two lines above execute the `python-qwt` test launcher:
14+
The two lines above execute the `PythonQwt` test launcher:
1515

1616
.. image:: /images/tests/__init__.png
1717

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. automodule:: qwt
22

3-
Download :download:`CHM Documentation (unzip and open) <../python-qwt.chm.zip>`.
3+
Download :download:`CHM Documentation (unzip and open) <../PythonQwt.chm.zip>`.
44

55
Contents:
66

doc/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ External resources:
2323

2424
* Bug reports and feature requests: `GitHub`_
2525

26-
.. _GitHub: https://github.com/PierreRaybaut/python-qwt
26+
.. _GitHub: https://github.com/PierreRaybaut/PythonQwt

doc/overview.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Purpose and Motivation
22
======================
33

4-
The ``python-qwt`` project was initiated to solve -at least temporarily-
4+
The ``PythonQwt`` project was initiated to solve -at least temporarily-
55
the obsolescence issue of `PyQwt` (the Python-Qwt C++ bindings library)
66
which is no longer maintained. The idea was to translate the original
77
Qwt C++ code to Python and then to optimize some parts of the code by
88
writing new modules based on NumPy and other libraries.
99

10-
The ``python-qwt`` package consists of a single Python package named
10+
The ``PythonQwt`` package consists of a single Python package named
1111
`qwt` and of a few other files (examples, doc, ...).
1212

1313
Overview
@@ -49,7 +49,7 @@ Threads:
4949
thanks to the `QtConcurrent` and `QFuture` Qt features which are
5050
currently not supported by PyQt.
5151

52-
- As a consequence the following API is not supported in `python-qwt`:
52+
- As a consequence the following API is not supported in `PythonQwt`:
5353
- `QwtPlotItem.renderThreadCount`
5454
- `QwtPlotItem.setRenderThreadCount`
5555
- option `numThreads` in `QwtPointMapper.toImage`
@@ -66,7 +66,7 @@ features are already implemented in `guiqwt`.
6666
Other API compatibility issues with `Qwt`:
6767

6868
- `QwtPlotCurve.MinimizeMemory` option was removed as this option has no
69-
sense in python-qwt (the polyline plotting is not taking more memory
69+
sense in PythonQwt (the polyline plotting is not taking more memory
7070
than the array data that is already there).
7171

7272
- `QwtPlotCurve.Fitted` option was removed as this option is not supported

qwt/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# Copyright (c) 2015 Pierre Raybaut, for the Python translation/optimization
66
# (see LICENSE file for more details)
77
"""
8-
python-qwt
9-
==========
8+
PythonQwt
9+
=========
1010
11-
The ``python-qwt`` package is a 2D-data plotting library using Qt graphical
11+
The ``PythonQwt`` package is a 2D-data plotting library using Qt graphical
1212
user interfaces for the Python programming language.
1313
1414
It consists of a single Python package named `qwt` which is a pure Python
@@ -19,7 +19,7 @@
1919
External resources:
2020
* Bug reports and feature requests: `GitHub`_
2121
22-
.. _GitHub: https://github.com/PierreRaybaut/python-qwt
22+
.. _GitHub: https://github.com/PierreRaybaut/PythonQwt
2323
"""
2424
__version__ = '0.2.1'
2525
QWT_VERSION_STR = '6.1.2'

qwt/plot_curve.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class QwtPlotCurve(QwtPlotSeriesItem, QwtSeriesStore):
130130
131131
.. warning ::
132132
133-
This option is *not* supported in `python-qwt`.
133+
This option is *not* supported in `PythonQwt`.
134134
135135
Legend attributes:
136136
@@ -163,7 +163,7 @@ class QwtPlotCurve(QwtPlotSeriesItem, QwtSeriesStore):
163163
164164
.. warning::
165165
166-
This option is currently *not* supported in `python-qwt`.
166+
This option is currently *not* supported in `PythonQwt`.
167167
168168
* `QwtPlotCurve.FilterPoints`:
169169
@@ -176,7 +176,7 @@ class QwtPlotCurve(QwtPlotSeriesItem, QwtSeriesStore):
176176
177177
.. warning::
178178
179-
This option was removed as it has no sense in `python-qwt`
179+
This option was removed as it has no sense in `PythonQwt`
180180
(the polyline plotting is not taking more memory than the
181181
array data that is already there).
182182

qwt/scale_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class QwtScaleEngine(object):
162162
163163
The layout of the scale can be varied with `setAttribute()`.
164164
165-
`python-qwt` offers implementations for logarithmic and linear scales.
165+
`PythonQwt` offers implementations for logarithmic and linear scales.
166166
167167
Layout attributes:
168168

0 commit comments

Comments
 (0)