From 8987a61ab906842510498c8bdec6d442c9d5a0ff Mon Sep 17 00:00:00 2001 From: Giuseppe Foti Date: Sat, 16 Dec 2023 19:58:50 +0100 Subject: [PATCH] Fixing setup.py for PEP420 Implicit name space --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0ca256e..07f4f94 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ import os import sys import codecs -from setuptools import setup, find_packages +from setuptools import setup, find_namespace_packages # These python versions are explicitly not supported # by colorful. This is mostly because of the incompatiblities @@ -81,7 +81,7 @@ def read_version(): maintainer_email='tuxtimo@gmail.com', include_package_data=True, package_data={'': ['colorful/data/*.txt', 'colorful/data/*.json', 'README.md']}, - packages=find_packages(exclude=['*tests*']), + packages=find_namespace_packages(exclude=['*tests*','*examples*']), install_requires=requirements, classifiers=[ 'Development Status :: 5 - Production/Stable',