Skip to content

Commit 972ba9d

Browse files
committed
Fixed License following Issue #11
1 parent a97b18a commit 972ba9d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+48
-45
lines changed

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python-qwt License Agreement
66
The essential part of the code was translated directly to Python from Qwt C++
77
library and is thus licensed under the terms of the Qwt License 1.0 which is
88
derived from LGPL (see included 'QwtLicense' file for more details).
9+
Copyright (C) 2002 Uwe Rathmann
910

1011
[2] Software licensed under the terms of the MIT license
1112

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ recursive-include doc *.py *.rst *.png *.ico
44
include MANIFEST.in
55
include LICENSE
66
include README
7-
include CHANGELOG
7+
include CHANGELOG
8+
include QwtLicense

README

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ python-qwt
1414

1515
The `qwt` Python package was partly (95%) translated from Qwt C++ library:
1616
the associated code is licensed under the terms of the Qwt license 1.0
17-
(see qwt/QwtLicense). The rest of the code was wrote from scratch and is
18-
licensed under the terms of the MIT License (see qwt/LICENSE).
17+
(see qwt/QwtLicense, Copyright (C) 2002 Uwe Rathmann). The rest of the
18+
code was wrote from scratch and is licensed under the terms of the MIT
19+
License (see qwt/LICENSE).
1920

2021
Overview
2122

qwt/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

6-
__version__ = QWT_VERSION_STR = '6.1.2a4'
6+
__version__ = QWT_VERSION_STR = '6.1.2a5'
77

88
import warnings
99

qwt/clipper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

66
from qwt.qt.QtGui import QPolygon, QPolygonF

qwt/color_map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

66
from qwt.qt.QtGui import QColor, qRed, qGreen, qBlue, qRgb, qRgba, qAlpha

qwt/column_symbol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

66
from qwt.interval import QwtInterval

qwt/curve_fitter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

66
from qwt.spline import QwtSpline

qwt/dyngrid_layout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

66
from qwt.qt.QtGui import QLayout

qwt/graphic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed under the terms of the Qwt License
3+
# Licensed under the terms of the Qwt License, Copyright (C) 2002 Uwe Rathmann
44
# (see qwt/LICENSE for details)
55

66
from qwt.null_paintdevice import QwtNullPaintDevice

0 commit comments

Comments
 (0)