Skip to content

Commit 9bcea7f

Browse files
committed
CHORE: Updated credits and licenses
1 parent 4c97e2e commit 9bcea7f

14 files changed

+519
-7
lines changed

LICENSES/MIT-CMU.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<copyright notice>
2+
3+
By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions:
4+
5+
Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the copyright holder not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.
6+
7+
THE COPYRIGHT HOLDER DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

LICENSES/PSF-2.0.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
2+
3+
1. This LICENSE AGREEMENT is between the Python Software Foundation
4+
("PSF"), and the Individual or Organization ("Licensee") accessing and
5+
otherwise using this software ("Python") in source or binary form and
6+
its associated documentation.
7+
8+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
9+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
10+
analyze, test, perform and/or display publicly, prepare derivative works,
11+
distribute, and otherwise use Python alone or in any derivative version,
12+
provided, however, that PSF's License Agreement and PSF's notice of copyright,
13+
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
14+
2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Python Software Foundation;
15+
All Rights Reserved" are retained in Python alone or in any derivative version
16+
prepared by Licensee.
17+
18+
3. In the event Licensee prepares a derivative work that is based on
19+
or incorporates Python or any part thereof, and wants to make
20+
the derivative work available to others as provided herein, then
21+
Licensee hereby agrees to include in any such work a brief summary of
22+
the changes made to Python.
23+
24+
4. PSF is making Python available to Licensee on an "AS IS"
25+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
26+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
27+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
28+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
29+
INFRINGE ANY THIRD PARTY RIGHTS.
30+
31+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
32+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
33+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
34+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
35+
36+
6. This License Agreement will automatically terminate upon a material
37+
breach of its terms and conditions.
38+
39+
7. Nothing in this License Agreement shall be deemed to create any
40+
relationship of agency, partnership, or joint venture between PSF and
41+
Licensee. This License Agreement does not grant permission to use PSF
42+
trademarks or trade name in a trademark sense to endorse or promote
43+
products or services of Licensee, or any third party.
44+
45+
8. By copying, installing or otherwise using Python, Licensee
46+
agrees to be bound by the terms and conditions of this License
47+
Agreement.

REUSE.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,38 @@ path = "credits/urllib3-LICENSE.txt"
110110
SPDX-FileCopyrightText = "Copyright (c) 2008-2020 Andrey Petrov and contributors."
111111
SPDX-License-Identifier = "MIT"
112112

113+
[[annotations]]
114+
path = "credits/defusedxml-LICENSE"
115+
SPDX-FileCopyrightText = "Copyright (c) Christian Heimes"
116+
SPDX-License-Identifier = "PSF-2.0"
117+
118+
[[annotations]]
119+
path = "credits/matplotlib-LICENSE"
120+
SPDX-FileCopyrightText = "Copyright (c) 2012- Matplotlib Development Team; All Rights Reserved"
121+
SPDX-License-Identifier = "PSF-2.0"
122+
123+
[[annotations]]
124+
path = "credits/numpy-LICENSE.txt"
125+
SPDX-FileCopyrightText = "Copyright (c) 2005-2025, NumPy Developers."
126+
SPDX-License-Identifier = "BSD-3-Clause"
127+
128+
[[annotations]]
129+
path = "credits/pillow-LICENSE"
130+
SPDX-FileCopyrightText = "Copyright © 2010 by Jeffrey A. Clark and contributors"
131+
SPDX-License-Identifier = "MIT-CMU"
132+
133+
[[annotations]]
134+
path = "credits/requests-LICENSE"
135+
SPDX-FileCopyrightText = "Copyright (c) Kenneth Reitz."
136+
SPDX-License-Identifier = "Apache-2.0"
137+
138+
[[annotations]]
139+
path = "credits/setuptools-LICENSE"
140+
SPDX-FileCopyrightText = "Copyright (c) Setuptools developers."
141+
SPDX-License-Identifier = "MIT"
142+
113143
[[annotations]]
114144
path = ["windows/ardupilot_methodic_configurator*", "windows/settings_template.json"]
115145
SPDX-FileCopyrightText = "2024-2025 Amilcar Lucas"
116146
SPDX-License-Identifier = "GPL-3.0-or-later"
147+

ardupilot_methodic_configurator/frontend_tkinter_base.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ def set_entries_tupple(self, values: list[str], selected_element: str, tooltip:
120120
show_tooltip(self, tooltip)
121121

122122

123+
# SPDX-SnippetBegin
124+
# SPDX-License-Identifier: MPL-2.0
125+
# SPDX-SnippetCopyrightText: 2019 Mark Pointing
126+
127+
123128
class ScrollFrame(ttk.Frame): # pylint: disable=too-many-ancestors
124129
"""
125130
A custom Frame widget that supports scrolling.
@@ -216,6 +221,9 @@ def on_leave(self, _event: tk.Event) -> None: # unbind wheel events when the cu
216221
self.canvas.unbind_all("<MouseWheel>")
217222

218223

224+
# SPDX-SnippetEnd
225+
226+
219227
class ProgressWindow:
220228
"""
221229
A class for creating and managing a progress window in the application.

ardupilot_methodic_configurator/frontend_tkinter_pair_tuple_combobox.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
from ardupilot_methodic_configurator.common_arguments import add_common_arguments_and_parse
2929
from ardupilot_methodic_configurator.frontend_tkinter_base import get_widget_font_family_and_size, update_combobox_width
3030

31+
# SPDX-SnippetBegin
32+
# SPDX-License-Identifier: MPL-2.0
33+
# SPDX-SnippetCopyrightText: 2022 geraldew
34+
3135

3236
# https://dev.to/geraldew/python-tkinter-an-exercise-in-wrapping-the-combobox-ndb
3337
class PairTupleCombobox(ttk.Combobox): # pylint: disable=too-many-ancestors
@@ -92,6 +96,8 @@ def get_selected_key(self) -> Union[str, None]:
9296
except IndexError:
9397
return None
9498

99+
# SPDX-SnippetEnd
100+
95101
# https://stackoverflow.com/questions/39915275/change-width-of-dropdown-listbox-of-a-ttk-combobox
96102
def on_combo_configure(self, event: tk.Event) -> None:
97103
combo = event.widget

credits/CREDITS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ It directly uses:
3131
| [Scrollable TK frame](https://gist.github.com/mp035/9f2027c3ef9172264532fcd6262f3b01) by Mark Pointing | [Mozilla Public License, v. 2.0](https://mozilla.org/MPL/2.0/) |
3232
| [Python Tkinter ComboBox](https://dev.to/geraldew/python-tkinter-an-exercise-in-wrapping-the-combobox-ndb) by geraldew | [Mozilla Public License, v. 2.0](https://mozilla.org/MPL/2.0/) |
3333
| [Argparse check limits](https://gist.github.com/dmitriykovalev/2ab1aa33a8099ef2d514925d84aa89e7) by Dmitriy Kovalev | [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0) |
34+
| [defusedxml](https://github.com/tiran/defusedxml) | [Python Software Foundation License](https://github.com/tiran/defusedxml/blob/main/LICENSE) |
35+
| [matplotlib](https://matplotlib.org/) | [Matplotlib License](https://github.com/matplotlib/matplotlib/blob/main/LICENSE/LICENSE) |
36+
| [numpy](https://numpy.org/) | [BSD License](https://github.com/numpy/numpy/blob/main/LICENSE.txt) |
37+
| [pillow](https://python-pillow.github.io/) | [MIT-CMU License](https://github.com/python-pillow/Pillow/blob/main/LICENSE) |
38+
| [requests](https://requests.readthedocs.io/) | [Apache 2.0 License](https://github.com/psf/requests/blob/main/LICENSE) |
39+
| [setuptools](https://setuptools.pypa.io/) | [MIT License](https://github.com/pypa/setuptools/blob/main/LICENSE) |
3440

3541
It indirectly uses:
3642

@@ -64,6 +70,7 @@ Credits also go to these other software projects that helped in developing ArduP
6470
- [inno setup](https://jrsoftware.org/isinfo.php): A free installer for Windows programs.
6571
- [bestpractices.dev](https://www.bestpractices.dev/en): A site for checking best practices in software development.
6672
- [isitmaintained.com](https://isitmaintained.com/): A service to check the maintenance status of open-source projects.
73+
- [renovate](https://github.com/renovatebot/renovate): Cross-platform Dependency Automation by Mend.io
6774

6875
Using these softwares allowed a small group of programmers to produce better code faster.
6976

credits/charset-normalizer-LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 TAHRI Ahmed R.
3+
Copyright (c) 2025 TAHRI Ahmed R.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

credits/defusedxml-LICENSE

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
2+
--------------------------------------------
3+
4+
1. This LICENSE AGREEMENT is between the Python Software Foundation
5+
("PSF"), and the Individual or Organization ("Licensee") accessing and
6+
otherwise using this software ("Python") in source or binary form and
7+
its associated documentation.
8+
9+
2. Subject to the terms and conditions of this License Agreement, PSF
10+
hereby grants Licensee a nonexclusive, royalty-free, world-wide
11+
license to reproduce, analyze, test, perform and/or display publicly,
12+
prepare derivative works, distribute, and otherwise use Python
13+
alone or in any derivative version, provided, however, that PSF's
14+
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
15+
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software Foundation;
16+
All Rights Reserved" are retained in Python alone or in any derivative
17+
version prepared by Licensee.
18+
19+
3. In the event Licensee prepares a derivative work that is based on
20+
or incorporates Python or any part thereof, and wants to make
21+
the derivative work available to others as provided herein, then
22+
Licensee hereby agrees to include in any such work a brief summary of
23+
the changes made to Python.
24+
25+
4. PSF is making Python available to Licensee on an "AS IS"
26+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
27+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
28+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
30+
INFRINGE ANY THIRD PARTY RIGHTS.
31+
32+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
33+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
34+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
35+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
36+
37+
6. This License Agreement will automatically terminate upon a material
38+
breach of its terms and conditions.
39+
40+
7. Nothing in this License Agreement shall be deemed to create any
41+
relationship of agency, partnership, or joint venture between PSF and
42+
Licensee. This License Agreement does not grant permission to use PSF
43+
trademarks or trade name in a trademark sense to endorse or promote
44+
products or services of Licensee, or any third party.
45+
46+
8. By copying, installing or otherwise using Python, Licensee
47+
agrees to be bound by the terms and conditions of this License
48+
Agreement.
49+

credits/matplotlib-LICENSE

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
License agreement for matplotlib versions 1.3.0 and later
2+
=========================================================
3+
4+
1. This LICENSE AGREEMENT is between the Matplotlib Development Team
5+
("MDT"), and the Individual or Organization ("Licensee") accessing and
6+
otherwise using matplotlib software in source or binary form and its
7+
associated documentation.
8+
9+
2. Subject to the terms and conditions of this License Agreement, MDT
10+
hereby grants Licensee a nonexclusive, royalty-free, world-wide license
11+
to reproduce, analyze, test, perform and/or display publicly, prepare
12+
derivative works, distribute, and otherwise use matplotlib
13+
alone or in any derivative version, provided, however, that MDT's
14+
License Agreement and MDT's notice of copyright, i.e., "Copyright (c)
15+
2012- Matplotlib Development Team; All Rights Reserved" are retained in
16+
matplotlib alone or in any derivative version prepared by
17+
Licensee.
18+
19+
3. In the event Licensee prepares a derivative work that is based on or
20+
incorporates matplotlib or any part thereof, and wants to
21+
make the derivative work available to others as provided herein, then
22+
Licensee hereby agrees to include in any such work a brief summary of
23+
the changes made to matplotlib .
24+
25+
4. MDT is making matplotlib available to Licensee on an "AS
26+
IS" basis. MDT MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
27+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, MDT MAKES NO AND
28+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB
30+
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
31+
32+
5. MDT SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
33+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
34+
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35+
MATPLOTLIB , OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
36+
THE POSSIBILITY THEREOF.
37+
38+
6. This License Agreement will automatically terminate upon a material
39+
breach of its terms and conditions.
40+
41+
7. Nothing in this License Agreement shall be deemed to create any
42+
relationship of agency, partnership, or joint venture between MDT and
43+
Licensee. This License Agreement does not grant permission to use MDT
44+
trademarks or trade name in a trademark sense to endorse or promote
45+
products or services of Licensee, or any third party.
46+
47+
8. By copying, installing or otherwise using matplotlib ,
48+
Licensee agrees to be bound by the terms and conditions of this License
49+
Agreement.
50+
51+
License agreement for matplotlib versions prior to 1.3.0
52+
========================================================
53+
54+
1. This LICENSE AGREEMENT is between John D. Hunter ("JDH"), and the
55+
Individual or Organization ("Licensee") accessing and otherwise using
56+
matplotlib software in source or binary form and its associated
57+
documentation.
58+
59+
2. Subject to the terms and conditions of this License Agreement, JDH
60+
hereby grants Licensee a nonexclusive, royalty-free, world-wide license
61+
to reproduce, analyze, test, perform and/or display publicly, prepare
62+
derivative works, distribute, and otherwise use matplotlib
63+
alone or in any derivative version, provided, however, that JDH's
64+
License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
65+
2002-2011 John D. Hunter; All Rights Reserved" are retained in
66+
matplotlib alone or in any derivative version prepared by
67+
Licensee.
68+
69+
3. In the event Licensee prepares a derivative work that is based on or
70+
incorporates matplotlib or any part thereof, and wants to
71+
make the derivative work available to others as provided herein, then
72+
Licensee hereby agrees to include in any such work a brief summary of
73+
the changes made to matplotlib.
74+
75+
4. JDH is making matplotlib available to Licensee on an "AS
76+
IS" basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
77+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
78+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
79+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB
80+
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
81+
82+
5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
83+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
84+
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
85+
MATPLOTLIB , OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
86+
THE POSSIBILITY THEREOF.
87+
88+
6. This License Agreement will automatically terminate upon a material
89+
breach of its terms and conditions.
90+
91+
7. Nothing in this License Agreement shall be deemed to create any
92+
relationship of agency, partnership, or joint venture between JDH and
93+
Licensee. This License Agreement does not grant permission to use JDH
94+
trademarks or trade name in a trademark sense to endorse or promote
95+
products or services of Licensee, or any third party.
96+
97+
8. By copying, installing or otherwise using matplotlib,
98+
Licensee agrees to be bound by the terms and conditions of this License
99+
Agreement.

credits/numpy-LICENSE.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Copyright (c) 2005-2025, NumPy Developers.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are
6+
met:
7+
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
11+
* Redistributions in binary form must reproduce the above
12+
copyright notice, this list of conditions and the following
13+
disclaimer in the documentation and/or other materials provided
14+
with the distribution.
15+
16+
* Neither the name of the NumPy Developers nor the names of any
17+
contributors may be used to endorse or promote products derived
18+
from this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)