REUSE — Software License Compliance
REUSE1 — Recommendations for licensing software
- …from Free Software Foundation Europe (FSFE)
- …SPDX license list2
- Add licence information to each file…
- SPDX-FileCopyrightText…publication years and copyright holder
- SPDX-License-Identifier…valid SPDX License Expression
 
- …or create a REUSE.toml3 file
Example
/*
 * SPDX-FileCopyrightText: 2024 Jane Doe <jane@example.com>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */Install the reuse4 CLI
# install via RPM package
sudo dnf install -y reuse
# install as Python package
pip3 install --user reuseUsage:
# check compliance
reuse lintFootnotes
- REUSE Software, FSFE 
 https://reuse.software↩︎
- SPDX License List 
 https://spdx.org/licenses↩︎
- REUSE.toml
 https://reuse.software/spec-3.3/#reusetoml↩︎
- reuseDocumentation
 https://reuse.readthedocs.io↩︎