diff options
| author | Bobby <[email protected]> | 2022-09-10 21:21:16 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-10 21:21:16 -0400 |
| commit | 13274333e80c52b6ba00e7270099cb167344e314 (patch) | |
| tree | 9d8e8ccc841a7b3dc40d36681f0d305100a27575 | |
| parent | 240e00de5ca6c5edb477379c3d069f0133b479fd (diff) | |
| download | edify-13274333e80c52b6ba00e7270099cb167344e314.tar.xz edify-13274333e80c52b6ba00e7270099cb167344e314.zip | |
update setup.py for releasev0.1.0
| -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, |
