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
394 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-headless',
'numpy>=1.14.5',
'docopt',
],
entry_points={
'console_scripts': ['adaptive_threshold=adaptive_threshold:main']
}
)