From 5baf89a6cd587a77efc0fde4de95073b41427124 Mon Sep 17 00:00:00 2001 From: Adil Bouchaara Date: Sat, 30 Dec 2017 13:45:27 +0000 Subject: [PATCH] fix find packages --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 44d3a0b..03bccc6 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from setuptools import setup +from setuptools import setup, find_packages setup(name='python-contact-importer', version='0.1', @@ -8,7 +8,7 @@ author='Millioner', author_email='millioner.bbb@gmail.com', url='https://github.com/millioner/Python-contact-importer', - packages=['contact_importer', ], + packages=find_packages(), include_package_data = True, # include everything in source control zip_safe=False, install_requires=['PyCrypto', 'oauth2', ],