-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from MocioF/master
Fixing setup.py for PEP420 Implicit name space
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[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', | ||
|