From fb6dae6a096567a72aae263745e712658458f9ec Mon Sep 17 00:00:00 2001 From: Alexandre Muller Date: Tue, 9 Jan 2024 11:42:43 +0100 Subject: [PATCH] setup: fix packages attribute --- setup.cfg | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index c5fcaa5..cbc7681 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,16 +24,19 @@ classifiers = Programming Language :: Python :: 3.12 keywords = xlsx, excel, streaming platform = any -packages = - docs, - tests, [options] +packages = find: python_requires = >= 3.8 install_requires = zipstream>=1.1.3 +[options.packages.find] +exclude = + tests* + docs* + [build-system] requires = ["setuptools"]