I’m writing a new Python package (not associated with the stack) and I’d like to use our current best-practices for declaring copyright and license information. RFC-45 provides some guidance on how to include a copyright statement (tl;dr use a COPYRIGHT
file), but I’m unsure about the policy on license declaration. Do I still need to put GPLv3 bloat at the top of each file, or can I also refer to the package’s central LICENSE
file?
Ideally I’d love for the top of my files to just include
# See COPYRIGHT and LICENSE files at the top of the source tree.
Update: After talking IRL to @josh it seems that I can just use a set of LICENSE
and COPYRIGHT
files without bothering to add boilerplate in the source code files. I’m also going to use the MIT license. If anyone has any objections, let me know. And again, this is specific to greenfield projects.