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==4.6.0.66', 'numpy==1.24.2', 'docopt==0.6.2', ], entry_points={ 'console_scripts': ['adaptive_threshold=adaptive_threshold:main'] } )