├── .circleci └── config.yml ├── .dockerignore ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── data └── test │ ├── data │ ├── subdir │ │ ├── subdir2 │ │ │ ├── test3.py │ │ │ ├── test4.bogus │ │ │ └── test5.py │ │ └── test2.py │ ├── test0.py │ └── test1.py │ ├── encodings │ ├── VariableInfo.uni │ ├── _ude_euc-tw1.txt │ ├── test-utf-8 │ └── test-windows-1252 │ ├── license │ ├── custom │ │ └── custom_license.txt │ ├── some_file.bogus │ └── test_license.txt │ └── near_tie │ ├── data │ └── source │ └── license │ ├── license1.txt │ └── license2.txt ├── license_identifier ├── .coveragerc ├── __init__.py ├── cli.py ├── data │ ├── custom_license.yml │ └── license_dir │ │ ├── 0BSD.txt │ │ ├── AAL.txt │ │ ├── ADSL.txt │ │ ├── AFL-1.1.txt │ │ ├── AFL-1.2.txt │ │ ├── AFL-2.0.txt │ │ ├── AFL-2.1.txt │ │ ├── AFL-3.0.txt │ │ ├── AGPL-1.0-only.txt │ │ ├── AGPL-1.0-or-later.txt │ │ ├── AGPL-1.0.txt │ │ ├── AGPL-3.0-only.txt │ │ ├── AGPL-3.0-or-later.txt │ │ ├── AGPL-3.0.txt │ │ ├── AMDPLPA.txt │ │ ├── AML.txt │ │ ├── AMPAS.txt │ │ ├── ANTLR-PD.txt │ │ ├── APAFML.txt │ │ ├── APL-1.0.txt │ │ ├── APSL-1.0.txt │ │ ├── APSL-1.1.txt │ │ ├── APSL-1.2.txt │ │ ├── APSL-2.0.txt │ │ ├── Abstyles.txt │ │ ├── Adobe-2006.txt │ │ ├── Adobe-Glyph.txt │ │ ├── Afmparse.txt │ │ ├── Aladdin.txt │ │ ├── Apache-1.0.txt │ │ ├── Apache-1.1.txt │ │ ├── Apache-2.0.txt │ │ ├── Artistic-1.0-Perl.txt │ │ ├── Artistic-1.0-cl8.txt │ │ ├── Artistic-1.0.txt │ │ ├── Artistic-2.0.txt │ │ ├── BSD-1-Clause.txt │ │ ├── BSD-2-Clause-FreeBSD.txt │ │ ├── BSD-2-Clause-NetBSD.txt │ │ ├── BSD-2-Clause-Patent.txt │ │ ├── BSD-2-Clause.txt │ │ ├── BSD-3-Clause-Attribution.txt │ │ ├── BSD-3-Clause-Clear.txt │ │ ├── BSD-3-Clause-LBNL.txt │ │ ├── BSD-3-Clause-No-Nuclear-License-2014.txt │ │ ├── BSD-3-Clause-No-Nuclear-License.txt │ │ ├── BSD-3-Clause-No-Nuclear-Warranty.txt │ │ ├── BSD-3-Clause.txt │ │ ├── BSD-4-Clause-UC.txt │ │ ├── BSD-4-Clause.txt │ │ ├── BSD-Protection.txt │ │ ├── BSD-Source-Code.txt │ │ ├── BSL-1.0.txt │ │ ├── Bahyph.txt │ │ ├── Barr.txt │ │ ├── Beerware.txt │ │ ├── BitTorrent-1.0.txt │ │ ├── BitTorrent-1.1.txt │ │ ├── Borceux.txt │ │ ├── CATOSL-1.1.txt │ │ ├── CC-BY-1.0.txt │ │ ├── CC-BY-2.0.txt │ │ ├── CC-BY-2.5.txt │ │ ├── CC-BY-3.0.txt │ │ ├── CC-BY-4.0.txt │ │ ├── CC-BY-NC-1.0.txt │ │ ├── CC-BY-NC-2.0.txt │ │ ├── CC-BY-NC-2.5.txt │ │ ├── CC-BY-NC-3.0.txt │ │ ├── CC-BY-NC-4.0.txt │ │ ├── CC-BY-NC-ND-1.0.txt │ │ ├── CC-BY-NC-ND-2.0.txt │ │ ├── CC-BY-NC-ND-2.5.txt │ │ ├── CC-BY-NC-ND-3.0.txt │ │ ├── CC-BY-NC-ND-4.0.txt │ │ ├── CC-BY-NC-SA-1.0.txt │ │ ├── CC-BY-NC-SA-2.0.txt │ │ ├── CC-BY-NC-SA-2.5.txt │ │ ├── CC-BY-NC-SA-3.0.txt │ │ ├── CC-BY-NC-SA-4.0.txt │ │ ├── CC-BY-ND-1.0.txt │ │ ├── CC-BY-ND-2.0.txt │ │ ├── CC-BY-ND-2.5.txt │ │ ├── CC-BY-ND-3.0.txt │ │ ├── CC-BY-ND-4.0.txt │ │ ├── CC-BY-SA-1.0.txt │ │ ├── CC-BY-SA-2.0.txt │ │ ├── CC-BY-SA-2.5.txt │ │ ├── CC-BY-SA-3.0.txt │ │ ├── CC-BY-SA-4.0.txt │ │ ├── CC0-1.0.txt │ │ ├── CDDL-1.0.txt │ │ ├── CDDL-1.1.txt │ │ ├── CDLA-Permissive-1.0.txt │ │ ├── CDLA-Sharing-1.0.txt │ │ ├── CECILL-1.0.txt │ │ ├── CECILL-1.1.txt │ │ ├── CECILL-2.0.txt │ │ ├── CECILL-2.1.txt │ │ ├── CECILL-B.txt │ │ ├── CECILL-C.txt │ │ ├── CNRI-Jython.txt │ │ ├── CNRI-Python-GPL-Compatible.txt │ │ ├── CNRI-Python.txt │ │ ├── CPAL-1.0.txt │ │ ├── CPL-1.0.txt │ │ ├── CPOL-1.02.txt │ │ ├── CUA-OPL-1.0.txt │ │ ├── Caldera.txt │ │ ├── ClArtistic.txt │ │ ├── Condor-1.1.txt │ │ ├── Crossword.txt │ │ ├── CrystalStacker.txt │ │ ├── Cube.txt │ │ ├── D-FSL-1.0.txt │ │ ├── DOC.txt │ │ ├── DSDP.txt │ │ ├── Dotseqn.txt │ │ ├── ECL-1.0.txt │ │ ├── ECL-2.0.txt │ │ ├── EFL-1.0.txt │ │ ├── EFL-2.0.txt │ │ ├── EPL-1.0.txt │ │ ├── EPL-2.0.txt │ │ ├── EUDatagrid.txt │ │ ├── EUPL-1.0.txt │ │ ├── EUPL-1.1.txt │ │ ├── EUPL-1.2.txt │ │ ├── Entessa.txt │ │ ├── ErlPL-1.1.txt │ │ ├── Eurosym.txt │ │ ├── FSFAP.txt │ │ ├── FSFUL.txt │ │ ├── FSFULLR.txt │ │ ├── FTL.txt │ │ ├── Fair.txt │ │ ├── Frameworx-1.0.txt │ │ ├── FreeImage.txt │ │ ├── GFDL-1.1-only.txt │ │ ├── GFDL-1.1-or-later.txt │ │ ├── GFDL-1.1.txt │ │ ├── GFDL-1.2-only.txt │ │ ├── GFDL-1.2-or-later.txt │ │ ├── GFDL-1.2.txt │ │ ├── GFDL-1.3-only.txt │ │ ├── GFDL-1.3-or-later.txt │ │ ├── GFDL-1.3.txt │ │ ├── GL2PS.txt │ │ ├── GPL-1.0+.txt │ │ ├── GPL-1.0-only.txt │ │ ├── GPL-1.0-or-later.txt │ │ ├── GPL-1.0.txt │ │ ├── GPL-2.0+.txt │ │ ├── GPL-2.0-only.txt │ │ ├── GPL-2.0-or-later.txt │ │ ├── GPL-2.0-with-GCC-exception.txt │ │ ├── GPL-2.0-with-autoconf-exception.txt │ │ ├── GPL-2.0-with-bison-exception.txt │ │ ├── GPL-2.0-with-classpath-exception.txt │ │ ├── GPL-2.0-with-font-exception.txt │ │ ├── GPL-2.0.txt │ │ ├── GPL-3.0+.txt │ │ ├── GPL-3.0-only.txt │ │ ├── GPL-3.0-or-later.txt │ │ ├── GPL-3.0-with-GCC-exception.txt │ │ ├── GPL-3.0-with-autoconf-exception.txt │ │ ├── GPL-3.0.txt │ │ ├── Giftware.txt │ │ ├── Glide.txt │ │ ├── Glulxe.txt │ │ ├── HPND.txt │ │ ├── HaskellReport.txt │ │ ├── IBM-pibs.txt │ │ ├── ICU.txt │ │ ├── IJG.txt │ │ ├── IPA.txt │ │ ├── IPL-1.0.txt │ │ ├── ISC.txt │ │ ├── ImageMagick.txt │ │ ├── Imlib2.txt │ │ ├── Info-ZIP.txt │ │ ├── Intel-ACPI.txt │ │ ├── Intel.txt │ │ ├── Interbase-1.0.txt │ │ ├── JSON.txt │ │ ├── JasPer-2.0.txt │ │ ├── LAL-1.2.txt │ │ ├── LAL-1.3.txt │ │ ├── LGPL-2.0+.txt │ │ ├── LGPL-2.0-only.txt │ │ ├── LGPL-2.0-or-later.txt │ │ ├── LGPL-2.0.txt │ │ ├── LGPL-2.1+.txt │ │ ├── LGPL-2.1-only.txt │ │ ├── LGPL-2.1-or-later.txt │ │ ├── LGPL-2.1.txt │ │ ├── LGPL-3.0+.txt │ │ ├── LGPL-3.0-only.txt │ │ ├── LGPL-3.0-or-later.txt │ │ ├── LGPL-3.0.txt │ │ ├── LGPLLR.txt │ │ ├── LPL-1.0.txt │ │ ├── LPL-1.02.txt │ │ ├── LPPL-1.0.txt │ │ ├── LPPL-1.1.txt │ │ ├── LPPL-1.2.txt │ │ ├── LPPL-1.3a.txt │ │ ├── LPPL-1.3c.txt │ │ ├── Latex2e.txt │ │ ├── Leptonica.txt │ │ ├── LiLiQ-P-1.1.txt │ │ ├── LiLiQ-R-1.1.txt │ │ ├── LiLiQ-Rplus-1.1.txt │ │ ├── Libpng.txt │ │ ├── Linux-OpenIB.txt │ │ ├── MIT-0.txt │ │ ├── MIT-CMU.txt │ │ ├── MIT-advertising.txt │ │ ├── MIT-enna.txt │ │ ├── MIT-feh.txt │ │ ├── MIT.txt │ │ ├── MITNFA.txt │ │ ├── MPL-1.0.txt │ │ ├── MPL-1.1.txt │ │ ├── MPL-2.0-no-copyleft-exception.txt │ │ ├── MPL-2.0.txt │ │ ├── MS-PL.txt │ │ ├── MS-RL.txt │ │ ├── MTLL.txt │ │ ├── MakeIndex.txt │ │ ├── MirOS.txt │ │ ├── Motosoto.txt │ │ ├── Multics.txt │ │ ├── Mup.txt │ │ ├── NASA-1.3.txt │ │ ├── NBPL-1.0.txt │ │ ├── NCSA.txt │ │ ├── NGPL.txt │ │ ├── NLOD-1.0.txt │ │ ├── NLPL.txt │ │ ├── NOSL.txt │ │ ├── NPL-1.0.txt │ │ ├── NPL-1.1.txt │ │ ├── NPOSL-3.0.txt │ │ ├── NRL.txt │ │ ├── NTP.txt │ │ ├── Naumen.txt │ │ ├── Net-SNMP.txt │ │ ├── NetCDF.txt │ │ ├── Newsletr.txt │ │ ├── Nokia.txt │ │ ├── Noweb.txt │ │ ├── Nunit.txt │ │ ├── OCCT-PL.txt │ │ ├── OCLC-2.0.txt │ │ ├── ODC-By-1.0.txt │ │ ├── ODbL-1.0.txt │ │ ├── OFL-1.0.txt │ │ ├── OFL-1.1.txt │ │ ├── OGL-UK-1.0.txt │ │ ├── OGL-UK-2.0.txt │ │ ├── OGL-UK-3.0.txt │ │ ├── OGTSL.txt │ │ ├── OLDAP-1.1.txt │ │ ├── OLDAP-1.2.txt │ │ ├── OLDAP-1.3.txt │ │ ├── OLDAP-1.4.txt │ │ ├── OLDAP-2.0.1.txt │ │ ├── OLDAP-2.0.txt │ │ ├── OLDAP-2.1.txt │ │ ├── OLDAP-2.2.1.txt │ │ ├── OLDAP-2.2.2.txt │ │ ├── OLDAP-2.2.txt │ │ ├── OLDAP-2.3.txt │ │ ├── OLDAP-2.4.txt │ │ ├── OLDAP-2.5.txt │ │ ├── OLDAP-2.6.txt │ │ ├── OLDAP-2.7.txt │ │ ├── OLDAP-2.8.txt │ │ ├── OML.txt │ │ ├── OPL-1.0.txt │ │ ├── OSET-PL-2.1.txt │ │ ├── OSL-1.0.txt │ │ ├── OSL-1.1.txt │ │ ├── OSL-2.0.txt │ │ ├── OSL-2.1.txt │ │ ├── OSL-3.0.txt │ │ ├── OpenSSL.txt │ │ ├── PDDL-1.0.txt │ │ ├── PHP-3.0.txt │ │ ├── PHP-3.01.txt │ │ ├── Plexus.txt │ │ ├── PostgreSQL.txt │ │ ├── Python-2.0.txt │ │ ├── QPL-1.0.txt │ │ ├── Qhull.txt │ │ ├── RHeCos-1.1.txt │ │ ├── RPL-1.1.txt │ │ ├── RPL-1.5.txt │ │ ├── RPSL-1.0.txt │ │ ├── RSA-MD.txt │ │ ├── RSCPL.txt │ │ ├── Rdisc.txt │ │ ├── Ruby.txt │ │ ├── SAX-PD.txt │ │ ├── SCEA.txt │ │ ├── SGI-B-1.0.txt │ │ ├── SGI-B-1.1.txt │ │ ├── SGI-B-2.0.txt │ │ ├── SISSL-1.2.txt │ │ ├── SISSL.txt │ │ ├── SMLNJ.txt │ │ ├── SMPPL.txt │ │ ├── SNIA.txt │ │ ├── SPL-1.0.txt │ │ ├── SWL.txt │ │ ├── Saxpath.txt │ │ ├── Sendmail-8.23.txt │ │ ├── Sendmail.txt │ │ ├── SimPL-2.0.txt │ │ ├── Sleepycat.txt │ │ ├── Spencer-86.txt │ │ ├── Spencer-94.txt │ │ ├── Spencer-99.txt │ │ ├── StandardML-NJ.txt │ │ ├── SugarCRM-1.1.3.txt │ │ ├── TCL.txt │ │ ├── TCP-wrappers.txt │ │ ├── TMate.txt │ │ ├── TORQUE-1.1.txt │ │ ├── TOSL.txt │ │ ├── TU-Berlin-1.0.txt │ │ ├── TU-Berlin-2.0.txt │ │ ├── UPL-1.0.txt │ │ ├── Unicode-DFS-2015.txt │ │ ├── Unicode-DFS-2016.txt │ │ ├── Unicode-TOU.txt │ │ ├── Unlicense.txt │ │ ├── VOSTROM.txt │ │ ├── VSL-1.0.txt │ │ ├── Vim.txt │ │ ├── W3C-19980720.txt │ │ ├── W3C-20150513.txt │ │ ├── W3C.txt │ │ ├── WTFPL.txt │ │ ├── WXwindows.txt │ │ ├── Watcom-1.0.txt │ │ ├── Wsuipa.txt │ │ ├── X11.txt │ │ ├── XFree86-1.1.txt │ │ ├── XSkat.txt │ │ ├── Xerox.txt │ │ ├── Xnet.txt │ │ ├── YPL-1.0.txt │ │ ├── YPL-1.1.txt │ │ ├── ZPL-1.1.txt │ │ ├── ZPL-2.0.txt │ │ ├── ZPL-2.1.txt │ │ ├── Zed.txt │ │ ├── Zend-2.0.txt │ │ ├── Zimbra-1.3.txt │ │ ├── Zimbra-1.4.txt │ │ ├── Zlib.txt │ │ ├── bzip2-1.0.5.txt │ │ ├── bzip2-1.0.6.txt │ │ ├── copyleft-next-0.3.0.txt │ │ ├── copyleft-next-0.3.1.txt │ │ ├── curl.txt │ │ ├── custom │ │ ├── Amazon-Software-ref.txt │ │ ├── Amazon-Software.txt │ │ └── README.md │ │ ├── diffmark.txt │ │ ├── dvipdfm.txt │ │ ├── eCos-2.0.txt │ │ ├── eGenix.txt │ │ ├── exceptions │ │ ├── 389-exception.txt │ │ ├── Autoconf-exception-2.0.txt │ │ ├── Autoconf-exception-3.0.txt │ │ ├── Bison-exception-2.2.txt │ │ ├── Bootloader-exception.txt │ │ ├── CLISP-exception-2.0.txt │ │ ├── Classpath-exception-2.0.txt │ │ ├── DigiRule-FOSS-exception.txt │ │ ├── FLTK-exception.txt │ │ ├── Fawkes-Runtime-exception.txt │ │ ├── Font-exception-2.0.txt │ │ ├── GCC-exception-2.0.txt │ │ ├── GCC-exception-3.1.txt │ │ ├── LLVM-exception.txt │ │ ├── LZMA-exception.txt │ │ ├── Libtool-exception.txt │ │ ├── Linux-syscall-note.txt │ │ ├── Nokia-Qt-exception-1.1.txt │ │ ├── OCCT-exception-1.0.txt │ │ ├── OCaml-LGPL-linking-exception.txt │ │ ├── OpenJDK-assembly-exception-1.0.txt │ │ ├── PS-or-PDF-font-exception-20170817.txt │ │ ├── Qt-GPL-exception-1.0.txt │ │ ├── Qt-LGPL-exception-1.1.txt │ │ ├── Qwt-exception-1.0.txt │ │ ├── WxWindows-exception-3.1.txt │ │ ├── eCos-exception-2.0.txt │ │ ├── freertos-exception-2.0.txt │ │ ├── gnu-javamail-exception.txt │ │ ├── i2p-gpl-java-exception.txt │ │ ├── mif-exception.txt │ │ ├── openvpn-openssl-exception.txt │ │ └── u-boot-exception-2.0.txt │ │ ├── gSOAP-1.3b.txt │ │ ├── gnuplot.txt │ │ ├── headers │ │ ├── AFL-1.1-header.txt │ │ ├── AFL-1.2-header.txt │ │ ├── AFL-2.0-header.txt │ │ ├── AFL-2.1-header.txt │ │ ├── AFL-3.0-header.txt │ │ ├── AGPL-3.0-header.txt │ │ ├── AGPL-3.0-only-header.txt │ │ ├── AGPL-3.0-or-later-header.txt │ │ ├── Apache-2.0-header.txt │ │ ├── BitTorrent-1.0-header.txt │ │ ├── BitTorrent-1.1-header.txt │ │ ├── CPAL-1.0-header.txt │ │ ├── CUA-OPL-1.0-header.txt │ │ ├── ECL-1.0-header.txt │ │ ├── ECL-2.0-header.txt │ │ ├── GFDL-1.1-header.txt │ │ ├── GFDL-1.1-only-header.txt │ │ ├── GFDL-1.1-or-later-header.txt │ │ ├── GFDL-1.2-header.txt │ │ ├── GFDL-1.2-only-header.txt │ │ ├── GFDL-1.2-or-later-header.txt │ │ ├── GFDL-1.3-header.txt │ │ ├── GFDL-1.3-only-header.txt │ │ ├── GFDL-1.3-or-later-header.txt │ │ ├── GPL-1.0+-header.txt │ │ ├── GPL-1.0-header.txt │ │ ├── GPL-1.0-only-header.txt │ │ ├── GPL-1.0-or-later-header.txt │ │ ├── GPL-2.0+-header.txt │ │ ├── GPL-2.0-header.txt │ │ ├── GPL-2.0-only-header.txt │ │ ├── GPL-2.0-or-later-header.txt │ │ ├── GPL-3.0+-header.txt │ │ ├── GPL-3.0-header.txt │ │ ├── GPL-3.0-only-header.txt │ │ ├── GPL-3.0-or-later-header.txt │ │ ├── Interbase-1.0-header.txt │ │ ├── LGPL-2.0+-header.txt │ │ ├── LGPL-2.0-header.txt │ │ ├── LGPL-2.0-only-header.txt │ │ ├── LGPL-2.0-or-later-header.txt │ │ ├── LGPL-2.1+-header.txt │ │ ├── LGPL-2.1-header.txt │ │ ├── LGPL-2.1-only-header.txt │ │ ├── LGPL-2.1-or-later-header.txt │ │ ├── LPPL-1.0-header.txt │ │ ├── LPPL-1.1-header.txt │ │ ├── LPPL-1.2-header.txt │ │ ├── LPPL-1.3a-header.txt │ │ ├── LPPL-1.3c-header.txt │ │ ├── MPL-1.0-header.txt │ │ ├── MPL-1.1-header.txt │ │ ├── OCLC-2.0-header.txt │ │ ├── OSL-1.0-header.txt │ │ ├── OSL-1.1-header.txt │ │ ├── OSL-2.0-header.txt │ │ ├── OSL-2.1-header.txt │ │ ├── OSL-3.0-header.txt │ │ ├── RPSL-1.0-header.txt │ │ ├── SCEA-header.txt │ │ ├── SGI-B-1.0-header.txt │ │ ├── SGI-B-1.1-header.txt │ │ ├── SISSL-1.2-header.txt │ │ ├── SISSL-header.txt │ │ ├── SPL-1.0-header.txt │ │ ├── W3C-20150513-header.txt │ │ └── W3C-header.txt │ │ ├── iMatix.txt │ │ ├── libtiff.txt │ │ ├── mpich2.txt │ │ ├── psfrag.txt │ │ ├── psutils.txt │ │ ├── xinetd.txt │ │ ├── xpp.txt │ │ └── zlib-acknowledgement.txt ├── license_identifier.py ├── license_identifier_test.py ├── licenses.py ├── location_identifier.py ├── location_identifier_test.py ├── location_result.py ├── match_summary.py ├── n_grams.py ├── n_grams_test.py ├── prep.py ├── prep_test.py ├── scores.py ├── scores_test.py ├── util.py └── util_test.py ├── requirements.txt ├── setup.py ├── test-requirements.txt ├── tox.ini └── update_licenses.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/README.md -------------------------------------------------------------------------------- /data/test/data/subdir/subdir2/test3.py: -------------------------------------------------------------------------------- 1 | __author__ = 'phshin' 2 | zero 3 | 4 | -------------------------------------------------------------------------------- /data/test/data/subdir/subdir2/test4.bogus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/data/subdir/subdir2/test4.bogus -------------------------------------------------------------------------------- /data/test/data/subdir/subdir2/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/data/subdir/subdir2/test5.py -------------------------------------------------------------------------------- /data/test/data/subdir/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/data/subdir/test2.py -------------------------------------------------------------------------------- /data/test/data/test0.py: -------------------------------------------------------------------------------- 1 | p 2 | q 3 | r 4 | my custom license 5 | s 6 | t 7 | -------------------------------------------------------------------------------- /data/test/data/test1.py: -------------------------------------------------------------------------------- 1 | zero 2 | one two three four 3 | five 4 | six 5 | seven -------------------------------------------------------------------------------- /data/test/encodings/VariableInfo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/encodings/VariableInfo.uni -------------------------------------------------------------------------------- /data/test/encodings/_ude_euc-tw1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/encodings/_ude_euc-tw1.txt -------------------------------------------------------------------------------- /data/test/encodings/test-utf-8: -------------------------------------------------------------------------------- 1 | こんにちは 2 | -------------------------------------------------------------------------------- /data/test/encodings/test-windows-1252: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/encodings/test-windows-1252 -------------------------------------------------------------------------------- /data/test/license/custom/custom_license.txt: -------------------------------------------------------------------------------- 1 | my custom license 2 | -------------------------------------------------------------------------------- /data/test/license/some_file.bogus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/data/test/license/some_file.bogus -------------------------------------------------------------------------------- /data/test/license/test_license.txt: -------------------------------------------------------------------------------- 1 | one two three four -------------------------------------------------------------------------------- /data/test/near_tie/data/source: -------------------------------------------------------------------------------- 1 | m n o p q 2 | g h i j k l m 3 | a b c d e 4 | -------------------------------------------------------------------------------- /data/test/near_tie/license/license1.txt: -------------------------------------------------------------------------------- 1 | a b c d e f 2 | g h i j k l 3 | m n o p q r 4 | -------------------------------------------------------------------------------- /data/test/near_tie/license/license2.txt: -------------------------------------------------------------------------------- 1 | m n o p q r 2 | g h i j k l 3 | a b c d e f 4 | -------------------------------------------------------------------------------- /license_identifier/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | *_test.py 4 | -------------------------------------------------------------------------------- /license_identifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/__init__.py -------------------------------------------------------------------------------- /license_identifier/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/cli.py -------------------------------------------------------------------------------- /license_identifier/data/custom_license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/custom_license.yml -------------------------------------------------------------------------------- /license_identifier/data/license_dir/0BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/0BSD.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AAL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ADSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ADSL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AFL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AFL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AFL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AFL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AFL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AFL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AFL-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AFL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AFL-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AGPL-1.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AGPL-1.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AGPL-1.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AGPL-1.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AGPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AGPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AGPL-3.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AGPL-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AMDPLPA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AMDPLPA.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AML.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/AMPAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/AMPAS.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ANTLR-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ANTLR-PD.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APAFML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/APAFML.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/APL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/APSL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/APSL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APSL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/APSL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/APSL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/APSL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Abstyles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Abstyles.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Adobe-2006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Adobe-2006.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Adobe-Glyph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Adobe-Glyph.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Afmparse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Afmparse.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Aladdin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Aladdin.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Apache-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Apache-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Apache-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Apache-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Apache-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Artistic-1.0-Perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Artistic-1.0-Perl.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Artistic-1.0-cl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Artistic-1.0-cl8.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Artistic-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Artistic-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Artistic-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Artistic-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-1-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-1-Clause.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-2-Clause-FreeBSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-2-Clause-FreeBSD.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-2-Clause-NetBSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-2-Clause-NetBSD.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-2-Clause-Patent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-2-Clause-Patent.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-2-Clause.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause-Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause-Attribution.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause-Clear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause-Clear.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause-LBNL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause-LBNL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause-No-Nuclear-License-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause-No-Nuclear-License-2014.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause-No-Nuclear-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause-No-Nuclear-License.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause-No-Nuclear-Warranty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause-No-Nuclear-Warranty.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-3-Clause.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-4-Clause-UC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-4-Clause-UC.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-4-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-4-Clause.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-Protection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-Protection.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSD-Source-Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSD-Source-Code.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BSL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Bahyph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Bahyph.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Barr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Barr.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Beerware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Beerware.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BitTorrent-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BitTorrent-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/BitTorrent-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/BitTorrent-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Borceux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Borceux.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CATOSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CATOSL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-4.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-4.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-ND-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-ND-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-ND-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-ND-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-ND-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-ND-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-ND-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-ND-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-ND-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-ND-4.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-SA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-SA-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-SA-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-SA-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-SA-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-SA-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-SA-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-NC-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-NC-SA-4.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-ND-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-ND-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-ND-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-ND-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-ND-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-ND-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-ND-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-ND-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-ND-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-ND-4.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-SA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-SA-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-SA-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-SA-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-SA-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-SA-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-SA-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CC0-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CDDL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CDDL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CDDL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CDDL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CDLA-Permissive-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CDLA-Permissive-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CDLA-Sharing-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CDLA-Sharing-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CECILL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CECILL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CECILL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CECILL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CECILL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CECILL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CECILL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CECILL-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CECILL-B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CECILL-B.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CECILL-C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CECILL-C.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CNRI-Jython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CNRI-Jython.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CNRI-Python-GPL-Compatible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CNRI-Python-GPL-Compatible.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CNRI-Python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CNRI-Python.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CPAL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CPAL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CPOL-1.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CPOL-1.02.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CUA-OPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CUA-OPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Caldera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Caldera.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ClArtistic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ClArtistic.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Condor-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Condor-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Crossword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Crossword.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/CrystalStacker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/CrystalStacker.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Cube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Cube.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/D-FSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/D-FSL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/DOC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/DOC.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/DSDP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/DSDP.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Dotseqn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Dotseqn.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ECL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ECL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ECL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ECL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EFL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EFL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EFL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EFL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EPL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EUDatagrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EUDatagrid.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EUPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EUPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EUPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EUPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/EUPL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/EUPL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Entessa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Entessa.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ErlPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ErlPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Eurosym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Eurosym.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FSFAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/FSFAP.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FSFUL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/FSFUL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FSFULLR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/FSFULLR.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FTL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/FTL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Fair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Fair.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Frameworx-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Frameworx-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/FreeImage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/FreeImage.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.1-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.1-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.2-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.2-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.2-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.2-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.3-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.3-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.3-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.3-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GFDL-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GFDL-1.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GL2PS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GL2PS.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-1.0+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-1.0+.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-1.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-1.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-1.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-1.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0+.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-GCC-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-with-GCC-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-autoconf-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-with-autoconf-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-bison-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-with-bison-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-classpath-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-with-classpath-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0-with-font-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0-with-font-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-3.0+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-3.0+.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-3.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-3.0-with-GCC-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-3.0-with-GCC-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-3.0-with-autoconf-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-3.0-with-autoconf-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/GPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/GPL-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Giftware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Giftware.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Glide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Glide.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Glulxe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Glulxe.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/HPND.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/HPND.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/HaskellReport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/HaskellReport.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/IBM-pibs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/IBM-pibs.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ICU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ICU.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/IJG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/IJG.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/IPA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/IPA.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/IPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/IPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ISC.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ImageMagick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ImageMagick.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Imlib2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Imlib2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Info-ZIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Info-ZIP.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Intel-ACPI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Intel-ACPI.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Intel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Intel.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Interbase-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Interbase-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/JSON.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/JasPer-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/JasPer-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LAL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LAL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LAL-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LAL-1.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.0+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.0+.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.1+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.1+.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.1-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-3.0+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-3.0+.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPL-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LGPLLR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LGPLLR.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPL-1.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPL-1.02.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPPL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPPL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPPL-1.3a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPPL-1.3a.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LPPL-1.3c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LPPL-1.3c.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Latex2e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Latex2e.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Leptonica.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Leptonica.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LiLiQ-P-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LiLiQ-P-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LiLiQ-R-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LiLiQ-R-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/LiLiQ-Rplus-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/LiLiQ-Rplus-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Libpng.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Linux-OpenIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Linux-OpenIB.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MIT-0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-CMU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MIT-CMU.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-advertising.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MIT-advertising.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-enna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MIT-enna.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT-feh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MIT-feh.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MIT.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MITNFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MITNFA.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MPL-2.0-no-copyleft-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MPL-2.0-no-copyleft-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MPL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MS-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MS-PL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MS-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MS-RL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MTLL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MTLL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MakeIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MakeIndex.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/MirOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/MirOS.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Motosoto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Motosoto.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Multics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Multics.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Mup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Mup.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NASA-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NASA-1.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NBPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NBPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NCSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NCSA.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NGPL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NLOD-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NLOD-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NLPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NLPL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NOSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NOSL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NPOSL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NPOSL-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NRL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NRL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NTP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NTP.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Naumen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Naumen.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Net-SNMP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Net-SNMP.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/NetCDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/NetCDF.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Newsletr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Newsletr.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Nokia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Nokia.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Noweb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Noweb.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Nunit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Nunit.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OCCT-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OCCT-PL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OCLC-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OCLC-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ODC-By-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ODC-By-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ODbL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ODbL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OFL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OFL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OFL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OGL-UK-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OGL-UK-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OGL-UK-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OGL-UK-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OGL-UK-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OGL-UK-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OGTSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OGTSL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-1.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-1.4.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.0.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.2.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.4.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.6.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.7.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OLDAP-2.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OLDAP-2.8.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OML.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OSET-PL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OSET-PL-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OSL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OSL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OSL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OSL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OSL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OSL-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OSL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OSL-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/OpenSSL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/PDDL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/PDDL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/PHP-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/PHP-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/PHP-3.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/PHP-3.01.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Plexus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Plexus.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/PostgreSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/PostgreSQL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Python-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Python-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/QPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/QPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Qhull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Qhull.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RHeCos-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/RHeCos-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/RPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RPL-1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/RPL-1.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RPSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/RPSL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RSA-MD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/RSA-MD.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/RSCPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/RSCPL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Rdisc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Rdisc.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Ruby.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SAX-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SAX-PD.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SCEA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SCEA.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SGI-B-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SGI-B-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SGI-B-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SGI-B-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SGI-B-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SGI-B-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SISSL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SISSL-1.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SISSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SISSL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SMLNJ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SMLNJ.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SMPPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SMPPL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SNIA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SNIA.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SWL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SWL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Saxpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Saxpath.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Sendmail-8.23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Sendmail-8.23.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Sendmail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Sendmail.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SimPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SimPL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Sleepycat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Sleepycat.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Spencer-86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Spencer-86.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Spencer-94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Spencer-94.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Spencer-99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Spencer-99.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/StandardML-NJ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/StandardML-NJ.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/SugarCRM-1.1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/SugarCRM-1.1.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TCL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TCL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TCP-wrappers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TCP-wrappers.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TMate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TMate.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TORQUE-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TORQUE-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TOSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TOSL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TU-Berlin-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TU-Berlin-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/TU-Berlin-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/TU-Berlin-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/UPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/UPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Unicode-DFS-2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Unicode-DFS-2015.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Unicode-DFS-2016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Unicode-DFS-2016.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Unicode-TOU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Unicode-TOU.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Unlicense.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/VOSTROM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/VOSTROM.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/VSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/VSL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Vim.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/W3C-19980720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/W3C-19980720.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/W3C-20150513.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/W3C-20150513.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/W3C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/W3C.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/WTFPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/WTFPL.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/WXwindows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/WXwindows.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Watcom-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Watcom-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Wsuipa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Wsuipa.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/X11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/X11.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/XFree86-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/XFree86-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/XSkat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/XSkat.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Xerox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Xerox.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Xnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Xnet.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/YPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/YPL-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/YPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/YPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ZPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ZPL-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ZPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ZPL-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/ZPL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/ZPL-2.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Zed.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zend-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Zend-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zimbra-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Zimbra-1.3.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zimbra-1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Zimbra-1.4.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/Zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/Zlib.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/bzip2-1.0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/bzip2-1.0.5.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/bzip2-1.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/bzip2-1.0.6.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/copyleft-next-0.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/copyleft-next-0.3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/copyleft-next-0.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/copyleft-next-0.3.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/curl.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/custom/Amazon-Software-ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/custom/Amazon-Software-ref.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/custom/Amazon-Software.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/custom/Amazon-Software.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/custom/README.md -------------------------------------------------------------------------------- /license_identifier/data/license_dir/diffmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/diffmark.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/dvipdfm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/dvipdfm.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/eCos-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/eCos-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/eGenix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/eGenix.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/389-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/389-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Autoconf-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Autoconf-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Autoconf-exception-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Autoconf-exception-3.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Bison-exception-2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Bison-exception-2.2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Bootloader-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Bootloader-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/CLISP-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/CLISP-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Classpath-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Classpath-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/DigiRule-FOSS-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/DigiRule-FOSS-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/FLTK-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/FLTK-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Fawkes-Runtime-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Fawkes-Runtime-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Font-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Font-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/GCC-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/GCC-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/GCC-exception-3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/GCC-exception-3.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/LLVM-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/LLVM-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/LZMA-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/LZMA-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Libtool-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Libtool-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Linux-syscall-note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Linux-syscall-note.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Nokia-Qt-exception-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Nokia-Qt-exception-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/OCCT-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/OCCT-exception-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/OCaml-LGPL-linking-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/OCaml-LGPL-linking-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/OpenJDK-assembly-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/OpenJDK-assembly-exception-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/PS-or-PDF-font-exception-20170817.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/PS-or-PDF-font-exception-20170817.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Qt-LGPL-exception-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Qt-LGPL-exception-1.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/Qwt-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/Qwt-exception-1.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/WxWindows-exception-3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/WxWindows-exception-3.1.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/eCos-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/eCos-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/freertos-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/freertos-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/gnu-javamail-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/gnu-javamail-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/i2p-gpl-java-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/i2p-gpl-java-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/mif-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/mif-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/openvpn-openssl-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/openvpn-openssl-exception.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/exceptions/u-boot-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/exceptions/u-boot-exception-2.0.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/gSOAP-1.3b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/gSOAP-1.3b.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/gnuplot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/gnuplot.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AFL-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-1.2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AFL-1.2-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AFL-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-2.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AFL-2.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AFL-3.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AFL-3.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AGPL-3.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AGPL-3.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AGPL-3.0-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AGPL-3.0-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/AGPL-3.0-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/AGPL-3.0-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/Apache-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/Apache-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/BitTorrent-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/BitTorrent-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/BitTorrent-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/BitTorrent-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/CPAL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/CPAL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/CUA-OPL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/CUA-OPL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/ECL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/ECL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/ECL-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/ECL-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.1-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.1-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.1-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.1-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.2-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.2-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.2-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.2-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.2-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.3-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.3-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.3-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.3-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GFDL-1.3-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GFDL-1.3-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0+-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-1.0+-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-1.0-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-1.0-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-1.0-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0+-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-2.0+-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-2.0-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-2.0-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-2.0-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0+-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-3.0+-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-3.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-3.0-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/GPL-3.0-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/GPL-3.0-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/Interbase-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/Interbase-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0+-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.0+-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.0-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.0-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.0-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1+-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.1+-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1-only-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.1-only-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LGPL-2.1-or-later-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LGPL-2.1-or-later-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LPPL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LPPL-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LPPL-1.2-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.3a-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LPPL-1.3a-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/LPPL-1.3c-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/LPPL-1.3c-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/MPL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/MPL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/MPL-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/MPL-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OCLC-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/OCLC-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/OSL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/OSL-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-2.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/OSL-2.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-2.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/OSL-2.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/OSL-3.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/OSL-3.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/RPSL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/RPSL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SCEA-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/SCEA-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SGI-B-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/SGI-B-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SGI-B-1.1-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/SGI-B-1.1-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SISSL-1.2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/SISSL-1.2-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SISSL-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/SISSL-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/SPL-1.0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/SPL-1.0-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/W3C-20150513-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/W3C-20150513-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/headers/W3C-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/headers/W3C-header.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/iMatix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/iMatix.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/libtiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/libtiff.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/mpich2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/mpich2.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/psfrag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/psfrag.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/psutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/psutils.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/xinetd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/xinetd.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/xpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/xpp.txt -------------------------------------------------------------------------------- /license_identifier/data/license_dir/zlib-acknowledgement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/data/license_dir/zlib-acknowledgement.txt -------------------------------------------------------------------------------- /license_identifier/license_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/license_identifier.py -------------------------------------------------------------------------------- /license_identifier/license_identifier_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/license_identifier_test.py -------------------------------------------------------------------------------- /license_identifier/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/licenses.py -------------------------------------------------------------------------------- /license_identifier/location_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/location_identifier.py -------------------------------------------------------------------------------- /license_identifier/location_identifier_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/location_identifier_test.py -------------------------------------------------------------------------------- /license_identifier/location_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/location_result.py -------------------------------------------------------------------------------- /license_identifier/match_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/match_summary.py -------------------------------------------------------------------------------- /license_identifier/n_grams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/n_grams.py -------------------------------------------------------------------------------- /license_identifier/n_grams_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/n_grams_test.py -------------------------------------------------------------------------------- /license_identifier/prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/prep.py -------------------------------------------------------------------------------- /license_identifier/prep_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/prep_test.py -------------------------------------------------------------------------------- /license_identifier/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/scores.py -------------------------------------------------------------------------------- /license_identifier/scores_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/scores_test.py -------------------------------------------------------------------------------- /license_identifier/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/util.py -------------------------------------------------------------------------------- /license_identifier/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/license_identifier/util_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/tox.ini -------------------------------------------------------------------------------- /update_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quic/lid/HEAD/update_licenses.py --------------------------------------------------------------------------------