From 7e99a7139ff01afd661dc26be24a36f98b0c892f Mon Sep 17 00:00:00 2001 From: GalaxySnail Date: Sat, 23 Sep 2023 17:52:55 +0800 Subject: [PATCH 1/2] Remove deprecated `license_file` option `license_file` is deprecated since setuptools v56.0.0 [1] [1] https://setuptools.pypa.io/en/latest/history.html#v56-0-0 --- setup.cfg | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index ed8a958..2a9acf1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,2 @@ [bdist_wheel] universal = 1 - -[metadata] -license_file = LICENSE From ba47868a7880f9ff2db6c4aaea7ea6239352ba71 Mon Sep 17 00:00:00 2001 From: GalaxySnail Date: Sat, 23 Sep 2023 17:56:31 +0800 Subject: [PATCH 2/2] Update MANIFEST.in to include bin, docs, and tox --- MANIFEST.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 8144aa2..50f7ce8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,5 @@ include LICENSE -recursive-include *.py *.j2 *.rst +include tox.ini +recursive-include bin *.py +recursive-include code_templates *.j2 +recursive-include docs *.py *.rst