├── .github └── workflows │ └── pythonpackage.yml ├── .gitignore ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README.rst ├── lice ├── __init__.py ├── core.py ├── template-afl3.txt ├── template-agpl3-header.txt ├── template-agpl3.txt ├── template-apache-header.txt ├── template-apache.txt ├── template-bsd2.txt ├── template-bsd3.txt ├── template-cc0-header.txt ├── template-cc0.txt ├── template-cc_by-header.txt ├── template-cc_by.txt ├── template-cc_by_nc-header.txt ├── template-cc_by_nc.txt ├── template-cc_by_nc_nd-header.txt ├── template-cc_by_nc_nd.txt ├── template-cc_by_nc_sa-header.txt ├── template-cc_by_nc_sa.txt ├── template-cc_by_nd-header.txt ├── template-cc_by_nd.txt ├── template-cc_by_sa-header.txt ├── template-cc_by_sa.txt ├── template-cddl.txt ├── template-epl.txt ├── template-gpl2-header.txt ├── template-gpl2.txt ├── template-gpl3-header.txt ├── template-gpl3.txt ├── template-isc.txt ├── template-lgpl.txt ├── template-mit.txt ├── template-mpl-header.txt ├── template-mpl.txt ├── template-wtfpl-header.txt ├── template-wtfpl.txt ├── template-zlib.txt └── tests │ ├── __init__.py │ └── test_lice.py ├── requirements.txt └── setup.py /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE README.rst lice/template-*.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/README.rst -------------------------------------------------------------------------------- /lice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/__init__.py -------------------------------------------------------------------------------- /lice/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/core.py -------------------------------------------------------------------------------- /lice/template-afl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-afl3.txt -------------------------------------------------------------------------------- /lice/template-agpl3-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-agpl3-header.txt -------------------------------------------------------------------------------- /lice/template-agpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-agpl3.txt -------------------------------------------------------------------------------- /lice/template-apache-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-apache-header.txt -------------------------------------------------------------------------------- /lice/template-apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-apache.txt -------------------------------------------------------------------------------- /lice/template-bsd2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-bsd2.txt -------------------------------------------------------------------------------- /lice/template-bsd3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-bsd3.txt -------------------------------------------------------------------------------- /lice/template-cc0-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc0-header.txt -------------------------------------------------------------------------------- /lice/template-cc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc0.txt -------------------------------------------------------------------------------- /lice/template-cc_by-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by-header.txt -------------------------------------------------------------------------------- /lice/template-cc_by.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nc-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nc-header.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nc.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nc_nd-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nc_nd-header.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nc_nd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nc_nd.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nc_sa-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nc_sa-header.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nc_sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nc_sa.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nd-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nd-header.txt -------------------------------------------------------------------------------- /lice/template-cc_by_nd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_nd.txt -------------------------------------------------------------------------------- /lice/template-cc_by_sa-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_sa-header.txt -------------------------------------------------------------------------------- /lice/template-cc_by_sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cc_by_sa.txt -------------------------------------------------------------------------------- /lice/template-cddl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-cddl.txt -------------------------------------------------------------------------------- /lice/template-epl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-epl.txt -------------------------------------------------------------------------------- /lice/template-gpl2-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-gpl2-header.txt -------------------------------------------------------------------------------- /lice/template-gpl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-gpl2.txt -------------------------------------------------------------------------------- /lice/template-gpl3-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-gpl3-header.txt -------------------------------------------------------------------------------- /lice/template-gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-gpl3.txt -------------------------------------------------------------------------------- /lice/template-isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-isc.txt -------------------------------------------------------------------------------- /lice/template-lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-lgpl.txt -------------------------------------------------------------------------------- /lice/template-mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-mit.txt -------------------------------------------------------------------------------- /lice/template-mpl-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-mpl-header.txt -------------------------------------------------------------------------------- /lice/template-mpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-mpl.txt -------------------------------------------------------------------------------- /lice/template-wtfpl-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-wtfpl-header.txt -------------------------------------------------------------------------------- /lice/template-wtfpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-wtfpl.txt -------------------------------------------------------------------------------- /lice/template-zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/template-zlib.txt -------------------------------------------------------------------------------- /lice/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lice/tests/test_lice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/lice/tests/test_lice.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | flake8 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licenses/lice/HEAD/setup.py --------------------------------------------------------------------------------