diff --git a/setup.py b/setup.py index 4b9fd1a..de268c2 100644 --- a/setup.py +++ b/setup.py @@ -20,10 +20,11 @@ def list_reqs(fname='requirements.txt'): author_email='jaswinder9051998@gmail.com', license='Apache License 2.0', packages=['zoofs'], - zip_safe=True, - description="zoofs is a Python library for performing feature selection using an variety of nature inspired wrapper algorithms..", + zip_safe=False, + description="zoofs is a Python library for performing feature selection using an variety of nature inspired wrapper algorithms..", long_description=long_description , - long_description_content_type='text/markdown', + long_description_content_type='text/markdown', install_requires=list_reqs(), + include_package_data=True, )