From 864b5c565d1cbfdea243ffbadf1d189963d72732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 2 Nov 2022 08:22:01 +0100 Subject: [PATCH] exclude tests from being installed Do not install `tests` as a top-level package -- such a package name is bound to collide with other packages, and for this reason no package should be installing files there. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 33bf4e5..bfeaed7 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def readme(): author_email='andrea.bonomi@gmail.com', url='http://github.com/andreax79/python-cstruct', license='MIT', - packages=find_packages(exclude=['ez_setup', 'examples']), + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, install_requires=[