From ca8f4c757701f951d2cfff481930cbd5180f3469 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 11 May 2022 10:41:44 -0400 Subject: [PATCH] Include all license files in distributions Without this patch, `THIRD_PARTY_LICENSES.md` was not being included in the distribution files built by `setup.py`. References: * https://packaging.python.org/en/latest/guides/using-manifest-in/ Signed-off-by: Alex Nelson --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index f54403c..160976a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,9 @@ classifiers = License :: OSI Approved :: Apache Software License Operating System :: OS Independent Programming Language :: Python :: 3 +license_files = + LICENSE + THIRD_PARTY_LICENSES.md [options] include_package_data = true