from setuptools import setup, find_packages setup( name='adaptive_threshold', version='0.0.1', packages=find_packages(include=['adaptive_threshold', 'adaptive_threshold.*']), install_requires=[ 'opencv-python-headless', 'numpy>=1.14.5', 'docopt', ], entry_points={ 'console_scripts': ['adaptive_threshold=adaptive_threshold:main'] } )