cmdbox 0.5.2__py3-none-any.whl → 0.5.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cmdbox might be problematic. Click here for more details.

Files changed (51) hide show
  1. cmdbox/app/auth/signin.py +1 -0
  2. cmdbox/app/features/cli/audit_base.py +4 -1
  3. cmdbox/app/features/cli/cmdbox_audit_delete.py +27 -18
  4. cmdbox/app/features/cli/cmdbox_audit_search.py +128 -62
  5. cmdbox/app/features/cli/cmdbox_audit_write.py +27 -20
  6. cmdbox/app/features/web/cmdbox_web_audit.py +81 -0
  7. cmdbox/app/features/web/cmdbox_web_audit_metrics.py +72 -0
  8. cmdbox/app/features/web/cmdbox_web_exec_cmd.py +10 -5
  9. cmdbox/app/features/web/cmdbox_web_user_data.py +58 -0
  10. cmdbox/app/options.py +40 -19
  11. cmdbox/app/web.py +7 -1
  12. cmdbox/extensions/features.yml +7 -4
  13. cmdbox/extensions/user_list.yml +5 -0
  14. cmdbox/licenses/LICENSE.argcomplete.3.6.2(Apache Software License).txt +177 -0
  15. cmdbox/licenses/LICENSE.gevent.25.4.1(MIT).txt +25 -0
  16. cmdbox/licenses/LICENSE.greenlet.3.2.0(MIT AND Python-2.0).txt +30 -0
  17. cmdbox/licenses/LICENSE.pillow.11.2.1(UNKNOWN).txt +1200 -0
  18. cmdbox/licenses/LICENSE.prompt_toolkit.3.0.51(BSD License).txt +27 -0
  19. cmdbox/licenses/LICENSE.pydantic.2.11.3(MIT License).txt +21 -0
  20. cmdbox/licenses/LICENSE.pydantic_core.2.33.1(MIT License).txt +21 -0
  21. cmdbox/licenses/LICENSE.starlette.0.46.2(BSD License).txt +27 -0
  22. cmdbox/licenses/LICENSE.typing_extensions.4.13.2(UNKNOWN).txt +279 -0
  23. cmdbox/licenses/LICENSE.urllib3.2.4.0(UNKNOWN).txt +21 -0
  24. cmdbox/licenses/LICENSE.uvicorn.0.34.1(BSD License).txt +27 -0
  25. cmdbox/licenses/LICENSE.watchfiles.1.0.5(MIT License).txt +21 -0
  26. cmdbox/licenses/files.txt +12 -13
  27. cmdbox/version.py +2 -2
  28. cmdbox/web/assets/apexcharts/apexcharts.css +679 -0
  29. cmdbox/web/assets/apexcharts/apexcharts.min.js +38 -0
  30. cmdbox/web/assets/cmdbox/audit.js +340 -0
  31. cmdbox/web/assets/cmdbox/color_mode.css +4 -0
  32. cmdbox/web/assets/cmdbox/common.js +397 -24
  33. cmdbox/web/assets/cmdbox/filer_modal.js +1 -1
  34. cmdbox/web/assets/cmdbox/list_cmd.js +7 -271
  35. cmdbox/web/assets/cmdbox/list_pipe.js +3 -3
  36. cmdbox/web/assets/cmdbox/users.js +17 -17
  37. cmdbox/web/assets/cmdbox/view_raw.js +1 -1
  38. cmdbox/web/assets/cmdbox/view_result.js +11 -13
  39. cmdbox/web/assets/filer/filer.js +2 -2
  40. cmdbox/web/assets_license_list.txt +4 -1
  41. cmdbox/web/audit.html +268 -0
  42. cmdbox/web/filer.html +21 -10
  43. cmdbox/web/gui.html +21 -52
  44. cmdbox/web/result.html +9 -2
  45. cmdbox/web/users.html +7 -3
  46. {cmdbox-0.5.2.dist-info → cmdbox-0.5.3.dist-info}/METADATA +8 -5
  47. {cmdbox-0.5.2.dist-info → cmdbox-0.5.3.dist-info}/RECORD +51 -32
  48. {cmdbox-0.5.2.dist-info → cmdbox-0.5.3.dist-info}/LICENSE +0 -0
  49. {cmdbox-0.5.2.dist-info → cmdbox-0.5.3.dist-info}/WHEEL +0 -0
  50. {cmdbox-0.5.2.dist-info → cmdbox-0.5.3.dist-info}/entry_points.txt +0 -0
  51. {cmdbox-0.5.2.dist-info → cmdbox-0.5.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2014, Jonathan Slenders
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice, this
11
+ list of conditions and the following disclaimer in the documentation and/or
12
+ other materials provided with the distribution.
13
+
14
+ * Neither the name of the {organization} nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 to present Pydantic Services Inc. and individual contributors.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Samuel Colvin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,27 @@
1
+ Copyright © 2018, [Encode OSS Ltd](https://www.encode.io/).
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 met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ * Neither the name of the copyright holder nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,279 @@
1
+ A. HISTORY OF THE SOFTWARE
2
+ ==========================
3
+
4
+ Python was created in the early 1990s by Guido van Rossum at Stichting
5
+ Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands
6
+ as a successor of a language called ABC. Guido remains Python's
7
+ principal author, although it includes many contributions from others.
8
+
9
+ In 1995, Guido continued his work on Python at the Corporation for
10
+ National Research Initiatives (CNRI, see https://www.cnri.reston.va.us)
11
+ in Reston, Virginia where he released several versions of the
12
+ software.
13
+
14
+ In May 2000, Guido and the Python core development team moved to
15
+ BeOpen.com to form the BeOpen PythonLabs team. In October of the same
16
+ year, the PythonLabs team moved to Digital Creations, which became
17
+ Zope Corporation. In 2001, the Python Software Foundation (PSF, see
18
+ https://www.python.org/psf/) was formed, a non-profit organization
19
+ created specifically to own Python-related Intellectual Property.
20
+ Zope Corporation was a sponsoring member of the PSF.
21
+
22
+ All Python releases are Open Source (see https://opensource.org for
23
+ the Open Source Definition). Historically, most, but not all, Python
24
+ releases have also been GPL-compatible; the table below summarizes
25
+ the various releases.
26
+
27
+ Release Derived Year Owner GPL-
28
+ from compatible? (1)
29
+
30
+ 0.9.0 thru 1.2 1991-1995 CWI yes
31
+ 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
32
+ 1.6 1.5.2 2000 CNRI no
33
+ 2.0 1.6 2000 BeOpen.com no
34
+ 1.6.1 1.6 2001 CNRI yes (2)
35
+ 2.1 2.0+1.6.1 2001 PSF no
36
+ 2.0.1 2.0+1.6.1 2001 PSF yes
37
+ 2.1.1 2.1+2.0.1 2001 PSF yes
38
+ 2.1.2 2.1.1 2002 PSF yes
39
+ 2.1.3 2.1.2 2002 PSF yes
40
+ 2.2 and above 2.1.1 2001-now PSF yes
41
+
42
+ Footnotes:
43
+
44
+ (1) GPL-compatible doesn't mean that we're distributing Python under
45
+ the GPL. All Python licenses, unlike the GPL, let you distribute
46
+ a modified version without making your changes open source. The
47
+ GPL-compatible licenses make it possible to combine Python with
48
+ other software that is released under the GPL; the others don't.
49
+
50
+ (2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
51
+ because its license has a choice of law clause. According to
52
+ CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
53
+ is "not incompatible" with the GPL.
54
+
55
+ Thanks to the many outside volunteers who have worked under Guido's
56
+ direction to make these releases possible.
57
+
58
+
59
+ B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
60
+ ===============================================================
61
+
62
+ Python software and documentation are licensed under the
63
+ Python Software Foundation License Version 2.
64
+
65
+ Starting with Python 3.8.6, examples, recipes, and other code in
66
+ the documentation are dual licensed under the PSF License Version 2
67
+ and the Zero-Clause BSD license.
68
+
69
+ Some software incorporated into Python is under different licenses.
70
+ The licenses are listed with code falling under that license.
71
+
72
+
73
+ PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
74
+ --------------------------------------------
75
+
76
+ 1. This LICENSE AGREEMENT is between the Python Software Foundation
77
+ ("PSF"), and the Individual or Organization ("Licensee") accessing and
78
+ otherwise using this software ("Python") in source or binary form and
79
+ its associated documentation.
80
+
81
+ 2. Subject to the terms and conditions of this License Agreement, PSF hereby
82
+ grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
83
+ analyze, test, perform and/or display publicly, prepare derivative works,
84
+ distribute, and otherwise use Python alone or in any derivative version,
85
+ provided, however, that PSF's License Agreement and PSF's notice of copyright,
86
+ i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
87
+ 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation;
88
+ All Rights Reserved" are retained in Python alone or in any derivative version
89
+ prepared by Licensee.
90
+
91
+ 3. In the event Licensee prepares a derivative work that is based on
92
+ or incorporates Python or any part thereof, and wants to make
93
+ the derivative work available to others as provided herein, then
94
+ Licensee hereby agrees to include in any such work a brief summary of
95
+ the changes made to Python.
96
+
97
+ 4. PSF is making Python available to Licensee on an "AS IS"
98
+ basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
99
+ IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
100
+ DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
101
+ FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
102
+ INFRINGE ANY THIRD PARTY RIGHTS.
103
+
104
+ 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
105
+ FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
106
+ A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
107
+ OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
108
+
109
+ 6. This License Agreement will automatically terminate upon a material
110
+ breach of its terms and conditions.
111
+
112
+ 7. Nothing in this License Agreement shall be deemed to create any
113
+ relationship of agency, partnership, or joint venture between PSF and
114
+ Licensee. This License Agreement does not grant permission to use PSF
115
+ trademarks or trade name in a trademark sense to endorse or promote
116
+ products or services of Licensee, or any third party.
117
+
118
+ 8. By copying, installing or otherwise using Python, Licensee
119
+ agrees to be bound by the terms and conditions of this License
120
+ Agreement.
121
+
122
+
123
+ BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
124
+ -------------------------------------------
125
+
126
+ BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
127
+
128
+ 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
129
+ office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
130
+ Individual or Organization ("Licensee") accessing and otherwise using
131
+ this software in source or binary form and its associated
132
+ documentation ("the Software").
133
+
134
+ 2. Subject to the terms and conditions of this BeOpen Python License
135
+ Agreement, BeOpen hereby grants Licensee a non-exclusive,
136
+ royalty-free, world-wide license to reproduce, analyze, test, perform
137
+ and/or display publicly, prepare derivative works, distribute, and
138
+ otherwise use the Software alone or in any derivative version,
139
+ provided, however, that the BeOpen Python License is retained in the
140
+ Software, alone or in any derivative version prepared by Licensee.
141
+
142
+ 3. BeOpen is making the Software available to Licensee on an "AS IS"
143
+ basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
144
+ IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
145
+ DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
146
+ FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
147
+ INFRINGE ANY THIRD PARTY RIGHTS.
148
+
149
+ 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
150
+ SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
151
+ AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
152
+ DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
153
+
154
+ 5. This License Agreement will automatically terminate upon a material
155
+ breach of its terms and conditions.
156
+
157
+ 6. This License Agreement shall be governed by and interpreted in all
158
+ respects by the law of the State of California, excluding conflict of
159
+ law provisions. Nothing in this License Agreement shall be deemed to
160
+ create any relationship of agency, partnership, or joint venture
161
+ between BeOpen and Licensee. This License Agreement does not grant
162
+ permission to use BeOpen trademarks or trade names in a trademark
163
+ sense to endorse or promote products or services of Licensee, or any
164
+ third party. As an exception, the "BeOpen Python" logos available at
165
+ http://www.pythonlabs.com/logos.html may be used according to the
166
+ permissions granted on that web page.
167
+
168
+ 7. By copying, installing or otherwise using the software, Licensee
169
+ agrees to be bound by the terms and conditions of this License
170
+ Agreement.
171
+
172
+
173
+ CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
174
+ ---------------------------------------
175
+
176
+ 1. This LICENSE AGREEMENT is between the Corporation for National
177
+ Research Initiatives, having an office at 1895 Preston White Drive,
178
+ Reston, VA 20191 ("CNRI"), and the Individual or Organization
179
+ ("Licensee") accessing and otherwise using Python 1.6.1 software in
180
+ source or binary form and its associated documentation.
181
+
182
+ 2. Subject to the terms and conditions of this License Agreement, CNRI
183
+ hereby grants Licensee a nonexclusive, royalty-free, world-wide
184
+ license to reproduce, analyze, test, perform and/or display publicly,
185
+ prepare derivative works, distribute, and otherwise use Python 1.6.1
186
+ alone or in any derivative version, provided, however, that CNRI's
187
+ License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
188
+ 1995-2001 Corporation for National Research Initiatives; All Rights
189
+ Reserved" are retained in Python 1.6.1 alone or in any derivative
190
+ version prepared by Licensee. Alternately, in lieu of CNRI's License
191
+ Agreement, Licensee may substitute the following text (omitting the
192
+ quotes): "Python 1.6.1 is made available subject to the terms and
193
+ conditions in CNRI's License Agreement. This Agreement together with
194
+ Python 1.6.1 may be located on the internet using the following
195
+ unique, persistent identifier (known as a handle): 1895.22/1013. This
196
+ Agreement may also be obtained from a proxy server on the internet
197
+ using the following URL: http://hdl.handle.net/1895.22/1013".
198
+
199
+ 3. In the event Licensee prepares a derivative work that is based on
200
+ or incorporates Python 1.6.1 or any part thereof, and wants to make
201
+ the derivative work available to others as provided herein, then
202
+ Licensee hereby agrees to include in any such work a brief summary of
203
+ the changes made to Python 1.6.1.
204
+
205
+ 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
206
+ basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
207
+ IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
208
+ DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
209
+ FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
210
+ INFRINGE ANY THIRD PARTY RIGHTS.
211
+
212
+ 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
213
+ 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
214
+ A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
215
+ OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
216
+
217
+ 6. This License Agreement will automatically terminate upon a material
218
+ breach of its terms and conditions.
219
+
220
+ 7. This License Agreement shall be governed by the federal
221
+ intellectual property law of the United States, including without
222
+ limitation the federal copyright law, and, to the extent such
223
+ U.S. federal law does not apply, by the law of the Commonwealth of
224
+ Virginia, excluding Virginia's conflict of law provisions.
225
+ Notwithstanding the foregoing, with regard to derivative works based
226
+ on Python 1.6.1 that incorporate non-separable material that was
227
+ previously distributed under the GNU General Public License (GPL), the
228
+ law of the Commonwealth of Virginia shall govern this License
229
+ Agreement only as to issues arising under or with respect to
230
+ Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
231
+ License Agreement shall be deemed to create any relationship of
232
+ agency, partnership, or joint venture between CNRI and Licensee. This
233
+ License Agreement does not grant permission to use CNRI trademarks or
234
+ trade name in a trademark sense to endorse or promote products or
235
+ services of Licensee, or any third party.
236
+
237
+ 8. By clicking on the "ACCEPT" button where indicated, or by copying,
238
+ installing or otherwise using Python 1.6.1, Licensee agrees to be
239
+ bound by the terms and conditions of this License Agreement.
240
+
241
+ ACCEPT
242
+
243
+
244
+ CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
245
+ --------------------------------------------------
246
+
247
+ Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
248
+ The Netherlands. All rights reserved.
249
+
250
+ Permission to use, copy, modify, and distribute this software and its
251
+ documentation for any purpose and without fee is hereby granted,
252
+ provided that the above copyright notice appear in all copies and that
253
+ both that copyright notice and this permission notice appear in
254
+ supporting documentation, and that the name of Stichting Mathematisch
255
+ Centrum or CWI not be used in advertising or publicity pertaining to
256
+ distribution of the software without specific, written prior
257
+ permission.
258
+
259
+ STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
260
+ THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
261
+ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
262
+ FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
263
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
264
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
265
+ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
266
+
267
+ ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION
268
+ ----------------------------------------------------------------------
269
+
270
+ Permission to use, copy, modify, and/or distribute this software for any
271
+ purpose with or without fee is hereby granted.
272
+
273
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
274
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
275
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
276
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
277
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
278
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
279
+ PERFORMANCE OF THIS SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2008-2020 Andrey Petrov and contributors.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,27 @@
1
+ Copyright © 2017-present, [Encode OSS Ltd](https://www.encode.io/).
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 met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ * Neither the name of the copyright holder nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017, 2018, 2019, 2020, 2021, 2022 Samuel Colvin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
cmdbox/licenses/files.txt CHANGED
@@ -7,7 +7,7 @@ Adam Turner <aa-turner@users.noreply.github.com>, Georg Brandl <georg@python.org
7
7
  UNKNOWN BSD License alabaster https://alabaster.readthedocs.io/ 1.0.0 cmdbox\licenses\LICENSE.alabaster.1.0.0(BSD License).txt
8
8
  Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin <s@muelcolvin.com>, Zac Hatfield-Dodds <zac@zhd.dev> MIT License annotated-types https://github.com/annotated-types/annotated-types 0.7.0 cmdbox\licenses\LICENSE.annotated-types.0.7.0(MIT License).txt
9
9
  Alex Grönholm <alex.gronholm@nextday.fi> MIT License anyio https://anyio.readthedocs.io/en/stable/versionhistory.html 4.9.0 cmdbox\licenses\LICENSE.anyio.4.9.0(MIT License).txt
10
- Andrey Kislyuk Apache Software License argcomplete https://github.com/kislyuk/argcomplete 3.6.1 cmdbox\licenses\LICENSE.argcomplete.3.6.1(Apache Software License).txt
10
+ Andrey Kislyuk Apache Software License argcomplete https://github.com/kislyuk/argcomplete 3.6.2 cmdbox\licenses\LICENSE.argcomplete.3.6.2(Apache Software License).txt
11
11
  Armin Ronacher BSD License babel https://babel.pocoo.org/ 2.17.0 cmdbox\licenses\LICENSE.babel.2.17.0(BSD License).txt
12
12
  "Jason R. Coombs" <jaraco@jaraco.com> MIT License backports.tarfile https://github.com/jaraco/backports.tarfile 1.2.0 cmdbox\licenses\LICENSE.backports.tarfile.1.2.0(MIT License).txt
13
13
  Kenneth Reitz Mozilla Public License 2.0 (MPL 2.0) certifi https://github.com/certifi/python-certifi 2025.1.31 cmdbox\licenses\LICENSE.certifi.2025.1.31(Mozilla Public License 2.0 (MPL 2.0)).txt
@@ -18,8 +18,8 @@ Jonathan Hartley <tartley@tartley.com> BSD License colorama https://github.com/t
18
18
  The cryptography developers <cryptography-dev@python.org> Apache Software License; BSD License cryptography https://github.com/pyca/cryptography 44.0.2 cmdbox\licenses\LICENSE.cryptography.44.0.2(Apache Software License; BSD License).txt
19
19
  David Goodger <goodger@python.org> BSD License; GNU General Public License (GPL); Public Domain; Python Software Foundation License docutils https://docutils.sourceforge.io 0.21.2 cmdbox\licenses\LICENSE.docutils.0.21.2(BSD License; GNU General Public License (GPL); Public Domain; Python Software Foundation License).txt
20
20
  =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com> MIT License fastapi https://github.com/fastapi/fastapi 0.115.12 cmdbox\licenses\LICENSE.fastapi.0.115.12(MIT License).txt
21
- Denis Bilenko MIT License gevent http://www.gevent.org/ 24.11.1 cmdbox\licenses\LICENSE.gevent.24.11.1(MIT License).txt
22
- Alexey Borzenkov MIT License greenlet https://greenlet.readthedocs.io/ 3.1.1 cmdbox\licenses\LICENSE.greenlet.3.1.1(MIT License).txt
21
+ Denis Bilenko MIT gevent http://www.gevent.org/ 25.4.1 cmdbox\licenses\LICENSE.gevent.25.4.1(MIT).txt
22
+ Alexey Borzenkov MIT AND Python-2.0 greenlet https://greenlet.readthedocs.io/ 3.2.0 cmdbox\licenses\LICENSE.greenlet.3.2.0(MIT AND Python-2.0).txt
23
23
  Benoit Chesneau <benoitc@gunicorn.org> MIT License gunicorn https://gunicorn.org 23.0.0 cmdbox\licenses\LICENSE.gunicorn.23.0.0(MIT License).txt
24
24
  Nathaniel J. Smith MIT License h11 https://github.com/python-hyper/h11 0.14.0 cmdbox\licenses\LICENSE.h11.0.14.0(MIT License).txt
25
25
  Yury Selivanov MIT License httptools https://github.com/MagicStack/httptools 0.6.4 cmdbox\licenses\LICENSE.httptools.0.6.4(MIT License).txt
@@ -38,18 +38,17 @@ Erik Rose <erikrose@grinchcentral.com> MIT License more-itertools https://github
38
38
  messense <messense@icloud.com> MIT nh3 UNKNOWN 0.2.21 cmdbox\licenses\LICENSE.nh3.0.2.21(MIT).txt
39
39
  Travis E. Oliphant et al. BSD License numpy https://numpy.org 2.2.4 cmdbox\licenses\LICENSE.numpy.2.2.4(BSD License).txt
40
40
  Donald Stufft <donald@stufft.io> Apache Software License; BSD License packaging https://github.com/pypa/packaging 24.2 cmdbox\licenses\LICENSE.packaging.24.2(Apache Software License; BSD License).txt
41
- "Jeffrey A. Clark" <aclark@aclark.net> CMU License (MIT-CMU) pillow https://python-pillow.github.io 11.1.0 cmdbox\licenses\LICENSE.pillow.11.1.0(CMU License (MIT-CMU)).txt
41
+ "Jeffrey A. Clark" <aclark@aclark.net> UNKNOWN pillow https://python-pillow.github.io 11.2.1 cmdbox\licenses\LICENSE.pillow.11.2.1(UNKNOWN).txt
42
42
  The pip developers <distutils-sig@python.org> MIT License pip https://pip.pypa.io/ 24.0 cmdbox\licenses\LICENSE.pip.24.0(MIT License).txt
43
43
  Kivy team MIT License plyer https://plyer.readthedocs.org/en/latest/ 2.1.0 cmdbox\licenses\LICENSE.plyer.2.1.0(MIT License).txt
44
44
  Luke Maurits <luke@maurits.id.au> UNKNOWN prettytable https://github.com/prettytable/prettytable 3.16.0 cmdbox\licenses\LICENSE.prettytable.3.16.0(UNKNOWN).txt
45
- Jonathan Slenders BSD License prompt_toolkit https://github.com/prompt-toolkit/python-prompt-toolkit 3.0.50 cmdbox\licenses\LICENSE.prompt_toolkit.3.0.50(BSD License).txt
45
+ Jonathan Slenders BSD License prompt_toolkit UNKNOWN 3.0.51 cmdbox\licenses\LICENSE.prompt_toolkit.3.0.51(BSD License).txt
46
46
  Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg https://psycopg.org/psycopg3/ 3.2.6 cmdbox\licenses\LICENSE.psycopg.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt
47
47
  Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg-binary https://psycopg.org/psycopg3/ 3.2.6 cmdbox\licenses\LICENSE.psycopg-binary.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt
48
- Daniele Varrazzo GNU Lesser General Public License v3 (LGPLv3) psycopg-pool https://psycopg.org/psycopg3/ 3.2.6 cmdbox\licenses\LICENSE.psycopg-pool.3.2.6(GNU Lesser General Public License v3 (LGPLv3)).txt
49
48
  Eli Bendersky BSD License pycparser https://github.com/eliben/pycparser 2.22 cmdbox\licenses\LICENSE.pycparser.2.22(BSD License).txt
50
49
  Helder Eijs BSD License; Public Domain pycryptodome https://www.pycryptodome.org 3.22.0 cmdbox\licenses\LICENSE.pycryptodome.3.22.0(BSD License; Public Domain).txt
51
- Samuel Colvin <s@muelcolvin.com>, Eric Jolibois <em.jolibois@gmail.com>, Hasan Ramezani <hasan.r67@gmail.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Terrence Dorsey <terry@pydantic.dev>, David Montague <david@pydantic.dev>, Serge Matveenko <lig@countzero.co>, Marcelo Trylesinski <marcelotryle@gmail.com>, Sydney Runkle <sydneymarierunkle@gmail.com>, David Hewitt <mail@davidhewitt.io>, Alex Hall <alex.mojaki@gmail.com>, Victorien Plot <contact@vctrn.dev> MIT License pydantic https://github.com/pydantic/pydantic 2.11.1 cmdbox\licenses\LICENSE.pydantic.2.11.1(MIT License).txt
52
- Samuel Colvin <s@muelcolvin.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, David Montague <david@pydantic.dev>, David Hewitt <mail@davidhewitt.dev>, Sydney Runkle <sydneymarierunkle@gmail.com>, Victorien Plot <contact@vctrn.dev> MIT License pydantic_core https://github.com/pydantic/pydantic-core 2.33.0 cmdbox\licenses\LICENSE.pydantic_core.2.33.0(MIT License).txt
50
+ Samuel Colvin <s@muelcolvin.com>, Eric Jolibois <em.jolibois@gmail.com>, Hasan Ramezani <hasan.r67@gmail.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Terrence Dorsey <terry@pydantic.dev>, David Montague <david@pydantic.dev>, Serge Matveenko <lig@countzero.co>, Marcelo Trylesinski <marcelotryle@gmail.com>, Sydney Runkle <sydneymarierunkle@gmail.com>, David Hewitt <mail@davidhewitt.io>, Alex Hall <alex.mojaki@gmail.com>, Victorien Plot <contact@vctrn.dev> MIT License pydantic https://github.com/pydantic/pydantic 2.11.3 cmdbox\licenses\LICENSE.pydantic.2.11.3(MIT License).txt
51
+ Samuel Colvin <s@muelcolvin.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, David Montague <david@pydantic.dev>, David Hewitt <mail@davidhewitt.dev>, Sydney Runkle <sydneymarierunkle@gmail.com>, Victorien Plot <contact@vctrn.dev> MIT License pydantic_core https://github.com/pydantic/pydantic-core 2.33.1 cmdbox\licenses\LICENSE.pydantic_core.2.33.1(MIT License).txt
53
52
  Moses Palmér GNU Lesser General Public License v3 (LGPLv3) pystray https://github.com/moses-palmer/pystray 0.19.5 cmdbox\licenses\LICENSE.pystray.0.19.5(GNU Lesser General Public License v3 (LGPLv3)).txt
54
53
  Saurabh Kumar BSD License python-dotenv https://github.com/theskumar/python-dotenv 1.1.0 cmdbox\licenses\LICENSE.python-dotenv.1.1.0(BSD License).txt
55
54
  Andrew Dunham <andrew@du.nham.ca>, Marcelo Trylesinski <marcelotryle@gmail.com> Apache Software License python-multipart https://github.com/Kludex/python-multipart 0.0.20 cmdbox\licenses\LICENSE.python-multipart.0.0.20(Apache Software License).txt
@@ -77,16 +76,16 @@ Adam Turner BSD License sphinxcontrib-jquery https://github.com/sphinx-contrib/j
77
76
  Georg Brandl BSD License sphinxcontrib-jsmath http://sphinx-doc.org/ 1.0.1 cmdbox\licenses\LICENSE.sphinxcontrib-jsmath.1.0.1(BSD License).txt
78
77
  Georg Brandl <georg@python.org> BSD License sphinxcontrib-qthelp https://www.sphinx-doc.org/ 2.0.0 cmdbox\licenses\LICENSE.sphinxcontrib-qthelp.2.0.0(BSD License).txt
79
78
  Georg Brandl <georg@python.org> BSD License sphinxcontrib-serializinghtml https://www.sphinx-doc.org/ 2.0.0 cmdbox\licenses\LICENSE.sphinxcontrib-serializinghtml.2.0.0(BSD License).txt
80
- Tom Christie <tom@tomchristie.com> BSD License starlette https://github.com/encode/starlette 0.46.1 cmdbox\licenses\LICENSE.starlette.0.46.1(BSD License).txt
79
+ Tom Christie <tom@tomchristie.com> BSD License starlette https://github.com/encode/starlette 0.46.2 cmdbox\licenses\LICENSE.starlette.0.46.2(BSD License).txt
81
80
  Sergey Astanin <s.astanin@gmail.com> MIT License tabulate https://github.com/astanin/python-tabulate 0.9.0 cmdbox\licenses\LICENSE.tabulate.0.9.0(MIT License).txt
82
81
  Taneli Hukkinen <hukkin@users.noreply.github.com> MIT License tomli https://github.com/hukkin/tomli 2.2.1 cmdbox\licenses\LICENSE.tomli.2.2.1(MIT License).txt
83
82
  Donald Stufft and individual contributors <donald@stufft.io> Apache Software License twine https://twine.readthedocs.io/ 6.1.0 cmdbox\licenses\LICENSE.twine.6.1.0(Apache Software License).txt
84
83
  Victorien Plot <contact@vctrn.dev> MIT License typing-inspection https://github.com/pydantic/typing-inspection 0.4.0 cmdbox\licenses\LICENSE.typing-inspection.0.4.0(MIT License).txt
85
- "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com> UNKNOWN typing_extensions https://github.com/python/typing_extensions 4.13.0 cmdbox\licenses\LICENSE.typing_extensions.4.13.0(UNKNOWN).txt
84
+ "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com> UNKNOWN typing_extensions https://github.com/python/typing_extensions 4.13.2 cmdbox\licenses\LICENSE.typing_extensions.4.13.2(UNKNOWN).txt
86
85
  Python Software Foundation Apache Software License tzdata https://github.com/python/tzdata 2025.2 cmdbox\licenses\LICENSE.tzdata.2025.2(Apache Software License).txt
87
- Andrey Petrov <andrey.petrov@shazow.net> MIT License urllib3 https://github.com/urllib3/urllib3/blob/main/CHANGES.rst 2.3.0 cmdbox\licenses\LICENSE.urllib3.2.3.0(MIT License).txt
88
- Tom Christie <tom@tomchristie.com>, Marcelo Trylesinski <marcelotryle@gmail.com> BSD License uvicorn https://www.uvicorn.org/ 0.34.0 cmdbox\licenses\LICENSE.uvicorn.0.34.0(BSD License).txt
89
- Samuel Colvin <s@muelcolvin.com> MIT License watchfiles https://github.com/samuelcolvin/watchfiles 1.0.4 cmdbox\licenses\LICENSE.watchfiles.1.0.4(MIT License).txt
86
+ Andrey Petrov <andrey.petrov@shazow.net> UNKNOWN urllib3 https://github.com/urllib3/urllib3/blob/main/CHANGES.rst 2.4.0 cmdbox\licenses\LICENSE.urllib3.2.4.0(UNKNOWN).txt
87
+ Tom Christie <tom@tomchristie.com>, Marcelo Trylesinski <marcelotryle@gmail.com> BSD License uvicorn https://www.uvicorn.org/ 0.34.1 cmdbox\licenses\LICENSE.uvicorn.0.34.1(BSD License).txt
88
+ Samuel Colvin <s@muelcolvin.com> MIT License watchfiles https://github.com/samuelcolvin/watchfiles 1.0.5 cmdbox\licenses\LICENSE.watchfiles.1.0.5(MIT License).txt
90
89
  Jeff Quast MIT License wcwidth https://github.com/jquast/wcwidth 0.2.13 cmdbox\licenses\LICENSE.wcwidth.0.2.13(MIT License).txt
91
90
  Aymeric Augustin <aymeric.augustin@m4x.org> BSD License websockets https://github.com/python-websockets/websockets 15.0.1 cmdbox\licenses\LICENSE.websockets.15.0.1(BSD License).txt
92
91
  Daniel Holth <dholth@fastmail.fm> MIT License wheel https://github.com/pypa/wheel 0.45.1 cmdbox\licenses\LICENSE.wheel.0.45.1(MIT License).txt
cmdbox/version.py CHANGED
@@ -1,9 +1,9 @@
1
1
  import datetime
2
2
 
3
- dt_now = datetime.datetime(2025, 4, 6)
3
+ dt_now = datetime.datetime(2025, 4, 18)
4
4
  __appid__ = 'cmdbox'
5
5
  __title__ = 'cmdbox (Command Development Application)'
6
- __version__ = '0.5.2'
6
+ __version__ = '0.5.3'
7
7
  __copyright__ = f'Copyright © 2023-{dt_now.strftime("%Y")} hamacom2004jp'
8
8
  __pypiurl__ = 'https://pypi.org/project/cmdbox/'
9
9
  __srcurl__ = 'https://github.com/hamacom2004jp/cmdbox'