You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
402 B

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']
}
)