From 7f1778fabc7b5fe2825d005fc37074ab7f277fa9 Mon Sep 17 00:00:00 2001 From: Carl Smedstad Date: Sun, 12 Nov 2023 20:52:19 +0100 Subject: [PATCH] Only include xhtml2pdf package in wheel Previously, the wheel included these top-level packages in addition to xhtml2pdf: * demo * docs * testrender Resolves #736. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bbce19fa..c7393f65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -86,7 +86,7 @@ xhtml2pdf = "xhtml2pdf.pisa:command" version = {attr = "xhtml2pdf.__version__"} [tool.setuptools.packages.find] -exclude = ["tests", "tests.*", "manual_test", "manual_test.*"] +include = ["xhtml2pdf*"] [tool.tox]