From 0c9bccafd6d0a9b83b5c43e801f4eaad4b9789c9 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 19 Nov 2017 14:15:59 -0800 Subject: [PATCH] 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 Change-Id: I972b93e3c048aab31f4e630865fcf3ca1da733a6 --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index acafbc5..f4f53db 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,6 +5,7 @@ author-email = jamielennox@gmail.com summary = Mock out responses from the requests package description-file = README.rst license = Apache-2 +license-file = LICENSE home-page = https://requests-mock.readthedocs.org/ classifier = Development Status :: 5 - Production/Stable