diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-04-10 20:22:36 -0700 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-04-10 20:22:36 -0700 |
commit | 75df01271d44bfc43f98f5ce1b3a667ca581ba47 (patch) | |
tree | 36b01ddda825cdd0fb0781b2dc3f8ef3f2abd880 /setup.cfg | |
parent | e4ab34e1ad74c6524c31b0131c8ddc9d430816f9 (diff) | |
download | cffi-75df01271d44bfc43f98f5ce1b3a667ca581ba47.tar.gz |
Include license file in the generated wheel package
The wheel package format supports including the license file. This is
done using the [metadata] section in the setup.cfg file. For additional
information on this feature, see:
https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file
Helps project comply with its own license:
> The above copyright notice and this permission notice shall be included
> in all copies or substantial portions of the Software.
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..0c9e0fc --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +license_file = LICENSE |