-
-
Notifications
You must be signed in to change notification settings - Fork 91
Description
Hi all,
during a license review I came across importlib_metadata
which appears to be required by one of our third-party packages (actually it gets pulled by setuptools).
Looking at the file LICENSE I found this:
you may not use this file except in compliance with the License.
Which would make much more sense if applied to individual source files 😉
In fact, https://www.apache.org/licenses/LICENSE-2.0.html#apply states:
Include a copy of the Apache License, typically in a file called LICENSE, in your work, and ...
IMO this means that the file LICENSE
should be a verbatim copy of https://www.apache.org/licenses/LICENSE-2.0.txt
The file NOTICE
should mention the copyright owner and the individual source files would carry the boiler plate currently included as LICENSE
file. This is how apache httpd does it:
If you like, I'll be glad to open a pull request.
Greetings, Torsten