From de87d2f1fa45bf120b4d8a82e1978d4052a46853 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 15 Oct 2017 23:10:27 -0700 Subject: [PATCH] Include license file in the generated wheel packages (#807) 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 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index edfdde81..204bfcad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,3 +20,6 @@ requires = amqp >= 2. [bdist_wheel] universal = 1 + +[metadata] +license_file = LICENSE