aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 235a2ac..b73d741 100755
--- a/setup.py
+++ b/setup.py
@@ -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,