diff --git a/setup.py b/setup.py index 2636a05..2020cbe 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages meta = {} with open("bladex/meta.py") as fp: @@ -53,7 +53,7 @@ author=AUTHOR, author_email=MAIL, license='MIT', - packages=[NAME], + packages=find_packages(), install_requires=REQUIRED, extras_require=EXTRAS, include_package_data=True,