From e0441c4aa1a430dbeaa9199d929967a4119494bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= Date: Tue, 6 Apr 2021 11:23:44 +0200 Subject: [PATCH] Explicitly require setuptools, since pdfa.py imports pkg_resources (#755) Co-authored-by: jbarlow83 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 98d395ec..e2342651 100644 --- a/setup.py +++ b/setup.py @@ -73,6 +73,7 @@ setup( 'Pillow >= 8.1.2', 'pluggy >= 0.13.0, < 1.0', 'reportlab >= 3.5.66', + 'setuptools', 'tqdm >= 4', ], tests_require=tests_require,