From adea5bc3965c80684f219b12299f708f2f422ca1 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 14 Nov 2021 15:24:15 -0800 Subject: [PATCH] flake8 fix, refs #331 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 47c927d..ff36a13 100644 --- a/setup.py +++ b/setup.py @@ -69,5 +69,6 @@ setup( "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ], - zip_safe=False, # For mypy and py.typed + # Needed to bundle py.typed so mypy can see it: + zip_safe=False, )