Skip to content

Commit

Permalink
Fixing setup.py for PEP420 Implicit name space
Browse files Browse the repository at this point in the history
  • Loading branch information
MocioF committed Dec 16, 2023
1 parent 32eeb20 commit 8987a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -81,7 +81,7 @@ def read_version():
maintainer_email='[email protected]',
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',
Expand Down

0 comments on commit 8987a61

Please sign in to comment.