diff options
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ from os.path import dirname from os.path import join from os.path import splitext -from setuptools import find_packages +from setuptools import find_namespace_packages from setuptools import setup @@ -30,7 +30,7 @@ setup( author='Bobby', author_email='[email protected]', url='https://github.com/luciferreeves/edify', - packages=find_packages('src'), + packages=find_namespace_packages('src'), package_dir={'': 'src'}, py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')], include_package_data=True, |
