Skip to content

Commit

Permalink
Merge pull request #53 from MocioF/master
Browse files Browse the repository at this point in the history
Fixing setup.py for PEP420 Implicit name space
  • Loading branch information
fliiiix authored Jan 7, 2024
2 parents 32eeb20 + 8987a61 commit e4fc008
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 e4fc008

Please sign in to comment.