forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NOTICE.txt
4250 lines (3099 loc) · 184 KB
/
NOTICE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Included Software, Images and Icons
###################################
General Information
===================
Spyder incorporates code and image assets from various external sources,
each of which is covered by its own license and copyright notice.
These files are listed here with their corresponding authors,
permission notices, disclaimers, and copyright statements; these are also
included in the files' directory and/or their headers, as appropriate.
Any file not listed here is covered by Spyder's MIT (Expat) license,
described in the LICENSE.txt file in this repository and Spyder's __init__.py.
Images, icons and font gyphs that include trademarked elements are used for
informational purposes only, and do not necessarily constitute any endorsement,
association or ownership by or of the marks or their respective owners.
All trademarks are the property of their respective owners.
-------------------------------------------------------------------------------
Instructions for Adding a New Entry
-----------------------------------
All files or groups of files, including source code, images, icons, and other
assets, that originate from projects outside of the Spyder organization
(regardless of the license), must be documented here.
Please see the Contributing Guide, CONTRIBUTING.md, for full details on the
criteria for inclusion and other steps you need to take to ensure transparency,
legal clarity and license compliance.
Always check with the Spyder team (on Github, Gitter or the Google Group)
before adding content from an external project, and only do so when necessary.
Add one entry per code repo, icon set or font face, or other cohesive
unit within which the source material is organized and distributed as.
New entries for icons should be in order of the number of icons used;
other entries should be in order of inclusion.
Pay careful attention to the number of blank lines before and after headings,
horizontal rules, sections, and other elements.
This helps keep this document semi-machine-readable and helps avoid conflicts.
Break this document at 79 characters, and at periods (sentences) unless the
text is copied directly from an external file (license, header, etc).
Follow the project standards here and for added files (see CONTRIBUTING.md).
Please check the list below to ensure your project's license is on it.
If not, you'll need to add it (but double-check it with us first).
Add its name here, and copy the plain text (broken at > 80 characters) in the
final section at the end of this document, at the end of the list.
Source code licenses:
* MIT (Expat) License
* 3-Clause ("Modified") BSD License
* Python Software Foundation License Version 2
* Apache License 2.0
Additional asset licenses:
* GNU LGPL 2.1 (with GPL 2.0)
* GNU LGPL 3.0 (with GPL 3.0)
* Creative Commons Attribution 3.0
* SIL Open Font License 1.1
-------------------------------------------------------------------------------
New Entry Template
------------------
# Fields that should be replaced are marked with <this-is-a-field>.
# Some fields are optional, indicated with [<option-one> OR <two>]
# Comments, indicated with # (like this one) are only for reference and should
# not be included in the final product.
# Beginning of template #
[<Project-Name> OR <Named-Subcomponent> from <Project-Name>] <version-used>
-------------------------------------------------------------------------
Copyright <year(s)> <author-name> [(<email-or-website>) IF provided]
# Use the author-provided form, if given, correcting obvious syntax errors
# (e.g. remove commas, false "All rights reserved" statements, etc)
# List additional copyright lines here, if provided
# If modified by Spyder contributors after adding, additionally list:
[Copyright (c) <current-year>- Spyder Project Contributors (see AUTHORS.txt)]
Author: <author-name> | <author-email> | <author-website>
Site: <main-project-website-other-than-github> # Unless no site exists
[Source: <main-page-of-github-etc-repository>]
[Download: <page-to-download-icons-or-assets>] # If not the same as above
License: <full-name-of-license-including-version>
<canonical-url-to-authoritative-license-text>
[No modifications made. OR Modifications made to [each file] to <purpose>.]
<license-summary-text-and-notices-from-original-project>
# If the project includes a NOTICE.txt file, copy its contents verbatim here.
# Additionally, include any non-canonical text in the project's license file
# (i.e. that not part of the actual license itself, as reproduced below)
# Any text from an AUTHORS file, any file header text aside from the copyright,
# Any legal-related text in the readme (credits, acknowledgments, license, etc)
# and any other legal text, disclaimer, notice, attribution etc. present.
# Trim all line breaks to no more than one consecutive blank line
[<project-name> is used in Spyder under the terms of the <specific-licensed>.
See below for the full text of the <specific-license>.] # If dual-licensed
# Pick the license closest to Spyder's, or otherwise the most permissive
# Include any additional custom explanatory text describing usage of the
# project/component/asset with Spyder here
See below for the full text of the <full-name-of-license-including-version>.
The current <project-name> license can be viewed at:
<direct-link-to-license-file-on-github-etc>
[Later versions of the <full-name-of-license] can be viewed at:
<link-to-license-creator-site>] # For "any later version" licenses, like LGPL
[The current license summary can be viewed at:
<link-to-license-summary-on-project-or-license-creator-page>] # If present
[The current version of the original file[s] can be viewed at:
<link-to-github-etc-of-original-file>] # If only specific file(s) used
<links-to-further-files-if-applicable]
Files covered:
<path/to/file/in/spyder/repo.py> # Should always be relative to the repo root
-------------------------------------------------------------------------------
# End of template #
===============================================================================
Source Code
===========
Electrum
--------
Copyright (C) 2018 The Electrum Developers
Author: Thomas Voegtlin and others | [email protected]
https://github.com/spesmilo/electrum/graphs/contributors
Site: https://electrum.org/
Source: https://github.com/spesmilo/electrum
License: MIT (Expat) License | https://opensource.org/licenses/MIT
Modifications made to add ellipsis to displayed text in a QLineEdit.
See below for the full text of the MIT License.
The current Electrum license can be viewed at:
https://github.com/spesmilo/electrum/blob/master/LICENCE
The current versions of the original files can be viewed at:
https://github.com/spesmilo/electrum/blob/master/electrum/gui/qt/amountedit.py
Files covered:
spyder/widgets/helperwidgets.py
-------------------------------------------------------------------------------
QDarkStyleSheet
---------------
Copyright (c) 2013- Colin Duquesnoy and others (see QDarkStyleSheet/AUTHORS.rst)
Author: Colin Duquesnoy and others | [email protected]
https://github.com/ColinDuquesnoy/QDarkStyleSheet/graphs/contributors
Site: https://github.com/ColinDuquesnoy/QDarkStyleSheet/
Source: https://github.com/ColinDuquesnoy/QDarkStyleSheet
License: MIT (Expat) License | https://opensource.org/licenses/MIT
Modifications made to adapt each file to Spyder.
See below for the full text of the MIT License.
The current QDarkStyleSheet license can be viewed at:
https://github.com/ColinDuquesnoy/QDarkStyleSheet/blob/master/LICENSE.rst
The current versions of the original files can be viewed at:
https://github.com/ColinDuquesnoy/QDarkStyleSheet/blob/master/qdarkstyle/__init__.py
Files covered:
spyder/app/utils.py
-------------------------------------------------------------------------------
MathJax 2.7.5
-------------
Copyright (c) 2009-2012 Design Science, Inc.
Author: The MathJax Consortium | Sponsored by the AMS, SIAM and Design Science
Site: https://www.mathjax.org/
Source: https://github.com/mathjax/MathJax/
License: Apache License 2.0 | https://www.apache.org/licenses/LICENSE-2.0
No individual files modified; subset of original files included.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
See below for the full text of the Apache License 2.0.
The current MathJax license can be viewed at
https://github.com/mathjax/MathJax/blob/master/LICENSE
Files covered:
spyder/plugins/help/utils/js/mathjax/*
-------------------------------------------------------------------------------
jQuery Javascript Library v1.7.2
--------------------------------
Copyright (c) 2011 John Resig, https://jquery.com/
Author: John Resig and contributors | jQuery Foundation
Site: https://jquery.com/
Source: https://github.com/jquery/jquery/
License: Dual licensed under the
* MIT (Expat) License | https://opensource.org/licenses/MIT
* GNU General Public License Version 2
https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
No modifications made.
https://jquery.org/license
Includes Sizzle.js (see below)
https://sizzlejs.com/
Date: Wed Mar 21 12:46:34 2012 -0700
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
available at https://github.com/jquery/jquery/
The MIT License is simple and easy to understand and it places almost
no restrictions on what you can do with the Project.
You are free to use the Project in any other project (even commercial projects)
as long as the copyright header is left intact.
jQuery is used in Spyder under the terms of the MIT (Expat) license.
See below for the full text of the MIT (Expat) license.
A copy of the GNU General Public License Version 2 is included for reference.
The current license summary can be viewed at:
https://jquery.org/license
The present license text can be referenced at:
https://github.com/jquery/jquery/blob/master/LICENSE.txt
Files covered:
spyder/plugins/help/utils/js/jquery.js
-------------------------------------------------------------------------------
Sizzle CSS Selector Engine 1.7.2
--------------------------------
Copyright (c) 2011 The Dojo Foundation and other contributors
Author: John Resig and contributors | jQuery Foundation
Site: https://sizzlejs.com/
Source: https://github.com/jquery/sizzle/
License: Triple licensed under the
* MIT (Expat) License | https://opensource.org/licenses/MIT
* BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
* GNU General Public License Version 2
https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
No modifications made.
More information: https://sizzlejs.com/
Date: Wed Mar 21 12:46:34 2012 -0700
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
available at https://github.com/jquery/sizzle
The MIT License is simple and easy to understand and it places almost
no restrictions on what you can do with the Project.
You are free to use the Project in any other project (even commercial projects)
as long as the copyright header is left intact.
Sizzle is used in Spyder under the terms of the MIT (Expat) license.
See below for the full text of the MIT (Expat) license.
The GNU General Public License Version 2 and BSD 3-clause license are below.
The current JS Foundation license summary can be viewed at:
https://jquery.org/license
The present license text can be referenced at:
https://github.com/jquery/sizzle/blob/master/LICENSE.txt
Files covered:
spyder/plugins/help/utils/js/jquery.js
-------------------------------------------------------------------------------
Modules from PyQode 2.11.0
--------------------------
Copyright (c) 2013-2016 Colin Duquesnoy and others (see pyqode/AUTHORS.rst)
Copyright (c) 2016- Spyder Project Contributors (see AUTHORS.txt)
Author: Colin Duquesnoy and others | [email protected]
https://github.com/pyQode/pyqode.core/graphs/contributors
Site: https://github.com/pyQode/pyQode
Source: https://github.com/pyQode/pyqode.core
License: MIT (Expat) License | https://opensource.org/licenses/MIT
Modifications made to adapt each file to Spyder.
Most of the pyqode packages are licensed under the MIT license.
Main Authors:
Colin Duquesnoy (@ColinDuquesnoy) <[email protected]>
Contributors:
Andres Granada (@ogranada)
Fynn Mazurkiewicz <FynnMazurkiewicz@'Googles-Email-Service'.com>
See below for the full text of the MIT License.
The current PyQode license can be viewed at:
https://github.com/pyQode/pyqode.core/blob/master/LICENSE
The current versions of the original files can be viewed at:
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/api/folding.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/api/decoration.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/api/manager.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/api/mode.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/api/panel.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/api/utils.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/managers/decorations.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/managers/modes.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/managers/panels.py
https://github.com/pyQode/pyqode.core/blob/master/pyqode/core/panels/folding.py
Files covered:
spyder/api/editorextension.py
spyder/api/manager.py
spyder/api/panel.py
spyder/api/widgets/mixins.py
spyder/plugins/editor/api/decoration.py
spyder/plugins/editor/extensions/manager.py
spyder/plugins/editor/panels/codefolding.py
spyder/plugins/editor/panels/manager.py
spyder/plugins/editor/utils/decoration.py
spyder/plugins/editor/utils/editor.py
-------------------------------------------------------------------------------
QCrash 0.2.0
------------
Copyright (c) 2016 Colin Duquesnoy
Copyright (c) 2018- Spyder Project Contributors (see AUTHORS.txt)
Author: Colin Duquesnoy | https://github.com/ColinDuquesnoy
Source: https://github.com/ColinDuquesnoy/QCrash
License: MIT (Expat) License | https://opensource.org/licenses/MIT
Modifications made to each file adapt QCrash to Spyder and improve it further.
QCrash is licensed under the MIT license.
Also includes an unmodified copy of Githubpy, listed below.
See below for the full text of the MIT (Expat) license.
The current QCrash license can be viewed at:
https://github.com/ColinDuquesnoy/QCrash/blob/master/LICENSE
Files covered:
spyder/widgets/github/backend.py
spyder/widgets/github/gh_login.py
spyder/widgets/github/tests/test_github_backend.py
-------------------------------------------------------------------------------
Sphinxify (from the Sage Project)
---------------------------------
Copyright (C) 2009 Tim Dumol <[email protected]>
Copyright (C) 2010- Spyder Project Contributors (see AUTHORS.txt)
Author: Tim Joseph Dumol | [email protected] | https://www.timdumol.com/
Site: https://www.sagemath.org/
Source: https://github.com/sagemath/sagenb
License: BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
Modifications made to each file adapt Sphinxify to Spyder and fix bugs.
Distributed under the terms of the BSD License.
See below for the full text of the BSD (3-clause) License.
The current version of the original file can be viewed at:
https://github.com/sagemath/sagenb/blob/master/sagenb/misc/sphinxify.py
Files covered:
spyder/plugins/help/utils/conf.py
spyder/plugins/help/utils/sphinxify.py
spyder/plugins/help/utils/templates/layout.html
-------------------------------------------------------------------------------
IPython
-------
Copyright (c) 2001 Nathaniel Gray <[email protected]>
Copyright (c) 2001 Janko Hauser <[email protected]>
Copyright (c) 2001-2007 Fernando Perez <[email protected]>
Copyright (c) 2008- IPython Development Team
Author: IPython Development Team (see above) | https://ipython.org/
Site: https://ipython.readthedocs.io/en/stable/
Source: https://github.com/ipython/ipython
License: BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
Modifications made to below files integrate with Spyder/QtPy and fix bugs.
IPython is licensed under the terms of the Modified BSD License (also known as
New or Revised or 3-Clause BSD).
Fernando Perez began IPython in 2001 based on code from Janko Hauser
<[email protected]> and Nathaniel Gray <[email protected]>. Fernando is still
the project lead.
The IPython Development Team is the set of all contributors to the IPython
project. This includes all of the IPython subprojects.
The core team that coordinates development on GitHub can be found here:
https://github.com/ipython/.
IPython uses a shared copyright model. Each contributor maintains copyright
over their contributions to IPython. But, it is important to note that these
contributions are typically only changes to the repositories. Thus, the IPython
source code, in its entirety is not the copyright of any single person or
institution. Instead, it is the collective copyright of the entire IPython
Development Team. If individual contributors want to maintain a record of what
changes/contributions they have specific copyright on, they should indicate
their copyright in the commit message of the change, when they commit the
change to one of the IPython repositories.
Spyder's Console is ultimately a frontend to the IPython interpreter,
which is used to run all interactive commands, scripts and executable code.
IPython frontend components were developed into Jupyter QtConsole; see below.
In addition to the list below, modified IPython code snippits included in:
setup.py
spyder/plugins/editor/extensions/closequotes.py
spyder/plugins/ipythonconsole/plugin.py
spyder/utils/programs.py
See below for the full text of the Modified BSD (3-clause) License.
The current IPython license can be viewed at:
https://github.com/ipython/ipython/blob/master/LICENSE
The current IPython license summary can be viewed at:
https://github.com/ipython/ipython/blob/master/COPYING.rst
Files covered:
spyder/utils/introspection/module_completion.py
spyder/widgets/calltip.py
-------------------------------------------------------------------------------
Jupyter QtConsole
-----------------
Copyright (c) 2001-2015 IPython Development Team
Copyright (c) 2015- Jupyter Development Team
Author: IPython/Project Jupyter Development Team | https://jupyter.org/
Site: https://qtconsole.readthedocs.io/en/stable/
Source: https://github.com/jupyter/qtconsole/
License: BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
Modifications made to below files to integrate with Spyder and migrate to QtPy.
This project is licensed under the terms of the Modified BSD License
(also known as New or Revised or 3-Clause BSD).
The Jupyter Development Team is the set of all contributors to the
Jupyter project. This includes all of the Jupyter subprojects.
The core team that coordinates development on GitHub can be found here:
https://github.com/jupyter/.
Jupyter uses a shared copyright model. Each contributor maintains copyright
over their contributions to Jupyter. But, it is important to note that
these contributions are typically only changes to the repositories.
Thus, the Jupyter source code, in its entirety is not the copyright of any
single person or institution. Instead, it is the collective copyright of the
entire Jupyter Development Team. If individual contributors want to maintain
a record of what changes/contributions they have specific copyright on,
they should indicate their copyright in the commit message of the change,
when they commit the change to one of the Jupyter repositories.
Spyder also relies on the QtConsole Python package to provide its Console UI.
Jupyter QtConsole was originally developed as part of IPython; see above.
In addition to the list below, modified QtConsole code snippits included in:
spyder/plugins/ipythonconsole/widgets/client.py
spyder/plugins/ipythonconsole/widgets/shell.py
See below for the full text of the Modified BSD (3-clause) License.
The current QtConsole license can be viewed at:
https://github.com/jupyter/qtconsole/blob/master/LICENSE
Files covered:
spyder/plugins/editor/utils/kill_ring.py
-------------------------------------------------------------------------------
BinaryOrNot 0.4.0
-----------------
Copyright (c) 2013 Audrey Roy
Author: Audrey Roy Greenfeld and contributors | [email protected] |
https://github.com/audreyr/binaryornot/blob/master/AUTHORS.rst
Site: https://binaryornot.readthedocs.io/en/latest/
Source: https://github.com/audreyr/binaryornot
License: BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
Minor modifications made to below files to integrate with Spyder.
Free software: BSD license
Development Lead:
Audrey Roy Greenfeld (https://github.com/audreyr)
Contributors:
* Nick Coghlan (https://github.com/ncoghlan)
* Ville Skyttä (https://github.com/scop)
* Vincent Bernat (https://github.com/vincentbernat)
* Daniel Roy Greenfeld (https://github.com/pydanny)
* Philippe Ombredanne (https://github.com/pombredanne)
* Aaron Meurer (https://github.com/asmeurer)
* David R. MacIver (https://github.com/DRMacIver)
* Raphael Pierzina (https://github.com/hackebrot)
* Johannes (https://github.com/johtso)
Special thanks to Eli Bendersky (@eliben) for his writeup explaining
the heuristic and his implementation, which this is largely based on.
Source code from the portion of Perl's pp_fttext that checks for textiness:
https://github.com/Perl/perl5/blob/v5.23.1/pp_sys.c#L3527-L3587
See below for the full text of the Modified BSD (3-clause) License.
The current BinaryOrNot license can be viewed at:
https://github.com/audreyr/binaryornot/blob/master/LICENSE
Files covered:
spyder/utils/external/binaryornot/__init__.py
spyder/utils/external/binaryornot/check.py
spyder/utils/external/binaryornot/helpers.py
-------------------------------------------------------------------------------
Lockfile Module from Twisted 12.3.0
-----------------------------------
Copyright (c) 2005 Divmod, Inc.
Copyright (c) 2008-2011 Twisted Matrix Laboratories
Copyright (c) 2012- Spyder Project Contributors
Author: Twisted Matrix Laboratories | https://github.com/ColinDuquesnoy
Site: https://www.twistedmatrix.com/
Source: https://github.com/twisted/twisted
License: MIT (Expat) License | https://opensource.org/licenses/MIT
Modifications made to adapt/improve the code for Spyder (see file for details).
All of the code in this distribution is
Copyright (c) 2001-2012 Twisted Matrix Laboratories.
Twisted is made available under the MIT license.
Copyright (c) 2001-2012
Allen Short
Andy Gayton
Andrew Bennetts
Antoine Pitrou
Apple Computer, Inc.
Benjamin Bruheim
Bob Ippolito
Canonical Limited
Christopher Armstrong
David Reid
Donovan Preston
Eric Mangold
Eyal Lotem
Itamar Turner-Trauring
James Knight
Jason A. Mobarak
Jean-Paul Calderone
Jessica McKellar
Jonathan Jacobs
Jonathan Lange
Jonathan D. Simms
Jürgen Hermann
Kevin Horn
Kevin Turner
Mary Gardiner
Matthew Lefkowitz
Massachusetts Institute of Technology
Moshe Zadka
Paul Swartz
Pavel Pergamenshchik
Ralph Meijer
Sean Riley
Software Freedom Conservancy
Travis B. Hartwell
Thijs Triemstra
Thomas Herve
Timothy Allen
See below for the full text of the MIT (Expat) license.
The current Twisted license can be viewed at:
https://github.com/twisted/twisted/blob/trunk/LICENSE
The current version of the original file can be viewed at:
https://github.com/twisted/twisted/blob/trunk/src/twisted/python/lockfile.py
Files covered:
spyder/utils/external/lockfile.py
-------------------------------------------------------------------------------
Toggleable Sections from the Cloud Sphinx Theme 1.6
---------------------------------------------------
Copyright (c) 2011-2012 Assurance Technologies
Copyright (c) 2014- Spyder Project Contributors
Author: Assurance Technologies | https://www.assurancetechnologies.com
Site/Source: https://bitbucket.org/ecollins/cloud_sptheme/
License: BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
Modifications made to extract and adapt a specific section of code for Spyder.
cloud_sptheme is released under the BSD license,
and is (c) `Assurance Technologies <https://www.assurancetechnologies.com>`_
The "cloud_sptheme" python package and artwork is
Copyright (c) 2010-2012 by Assurance Technologies, LLC.
See below for the full text of the 3-clause BSD license.
The current Cloud Sphinx Theme license can be viewed at:
https://bitbucket.org/ecollins/cloud_sptheme/src/default/LICENSE
The current version of the original file can be viewed at:
https://bitbucket.org/ecollins/cloud_sptheme/src/default/cloud_sptheme/themes/cloud/static/cloud.js_t
Files covered:
spyder/plugins/help/utils/js/collapse_sections.js
-------------------------------------------------------------------------------
Copy Button from the Python Docs Theme
--------------------------------------
Copyright (c) 2012 Python Software Foundation
Copyright (c) 2012- Spyder Project Contributors
Author: Python Software Foundation | https://www.python.org/
Site: https://docs.python.org/3/
Source: https://github.com/python/python-docs-theme
License: Python Software Foundation License Version 2
https://docs.python.org/3/license.html
Minor modifications made to style.
Note that when adopting this theme, you're also borrowing an element of the
trust and credibility established by the CPython core developers over the
years. That's fine, and you're welcome to do so for other Python community
projects if you so choose, but please keep in mind that in doing so you're also
choosing to accept some of the responsibility for maintaining that collective
trust.
The Python name and logo is a trademark of the Python Software Foundation.
See below for the full text of the PSF License Version 2.
The current Cloud Sphinx Theme license can be viewed at:
https://bitbucket.org/ecollins/cloud_sptheme/src/default/LICENSE
The current version of the original file can be viewed at:
https://github.com/python/python-docs-theme/blob/master/python_docs_theme/static/copybutton.js
The original file is used online at:
https://docs.python.org/_static/copybutton.js
Files covered:
spyder/plugins/help/utils/js/copy_button.js
-------------------------------------------------------------------------------
QtWaitingSpinner
----------------
Copyright (c) 2012-2014 Alexander Turkin
Copyright (c) 2014 William Hallatt
Copyright (c) 2015 Jacob Dawid
Copyright (c) 2016 Luca Weiss
Copyright (c) 2017- Spyder Project Contributors
Author: Alex Turkin, Luca Weiss and Contributors
https://github.com/z3ntu/QtWaitingSpinner/graphs/contributors
Site: https://github.com/snowwlex/QtWaitingSpinner
Source: https://github.com/z3ntu/QtWaitingSpinner
License: MIT (Expat) License | https://opensource.org/licenses/MIT
A trivial modification was made to ensure independent function with Spyder.
Original Work Copyright (c) 2012-2015 Alexander Turkin
Modified 2014 by William Hallatt
Modified for Python by Luca Weiss (@z3ntu)
https://github.com/z3ntu
Thanks to @snowwlex for the base of my port (and the README)!
https://github.com/snowwlex
QtWaitingSpinner was inspired by the spin.js project.
https://spin.js.org/
See below for the full text of the MIT (Expat) License.
The current Waiting Spinner license can be viewed at:
https://github.com/z3ntu/QtWaitingSpinner/blob/master/LICENSE.md
Files covered:
spyder/widgets/waitingspinner.py
-------------------------------------------------------------------------------
DataFrameModel from QtPandas (Pandas 0.13.1)
--------------------------------------------
Copyright (c) 2008-2011 AQR Capital Management, LLC
Copyright (c) 2011-2012 Lambda Foundry, Inc. and PyData Development Team
Copyright (c) 2013 Jev Kuznetsov and contributors
Copyright (c) 2014- Spyder Project Contributors
Author: Jev Kuznetsov and pandas contributors | https://github.com/sjev
Site: https://pandas.pydata.org/
Source: https://github.com/draperjames/qtpandas
License: BSD (3-clause) License | https://opensource.org/licenses/BSD-3-Clause
Extensive adaptation, modification and improvements made to the base class.
pandas is distributed under a 3-clause ("New") BSD license.
AQR Capital Management began pandas development in 2008. Development was
led by Wes McKinney. AQR released the source under this license in 2009.
Wes is now an employee of Lambda Foundry, and remains the pandas project
lead.
The PyData Development Team is the collection of developers of the PyData
project. This includes all of the PyData sub-projects, including pandas. The
core team that coordinates development on GitHub can be found here:
https://github.com/pydata.
Full credits for pandas contributors can be found in the documentation.
PyData uses a shared copyright model. Each contributor maintains copyright
over their contributions to PyData. However, it is important to note that
these contributions are typically only changes to the repositories. Thus,
the PyData source code, in its entirety, is not the copyright of any single
person or institution. Instead, it is the collective copyright of the
entire PyData Development Team. If individual contributors want to maintain
a record of what changes/contributions they have specific copyright on,
they should indicate their copyright in the commit message of the change
when they commit the change to one of the PyData repositories.
See below for the full text of the BSD (3-clause) license.
The current pandas license can be viewed at:
https://github.com/pandas-dev/pandas/blob/master/LICENSE
The current QtPandas license can be viewed at:
https://github.com/draperjames/qtpandas/blob/master/LICENSE
The original version of the original file can be viewed at:
https://github.com/pandas-dev/pandas/blob/d10a658673b7d2c2e7a346461c9a4bfc5233d7e1/pandas/sandbox/qtpandas.py
The current version of the original file can be viewed at:
https://github.com/draperjames/qtpandas/blob/master/qtpandas/models/DataFrameModel.py
Files covered:
spyder/plugins/variableexplorer/widgets/dataframeeditor.py
-------------------------------------------------------------------------------
Classes from Gtabview 0.8
-------------------------