11import setuptools
22
33with open ("README.md" , "r" ) as fh :
4- long_description = fh .read ()
4+ long_description = fh .read ()
55
66setuptools .setup (
7- name = "Multi-Template-Matching" ,
8- version = "1.1 " ,
9- author = "Laurent Thomas" ,
10- 11- description = "Object-recognition in images using multiple templates" ,
12- long_description = long_description ,
13- long_description_content_type = "text/markdown" ,
7+ name = "Multi-Template-Matching" ,
8+ version = "1.2 " ,
9+ author = "Laurent Thomas" ,
10+ 11+ description = "Object-recognition in images using multiple templates" ,
12+ long_description = long_description ,
13+ long_description_content_type = "text/markdown" ,
1414 keywords = "object-recognition object-localization" ,
15- url = "https://github.com/LauLauThom/MultiTemplateMatching-Python" ,
16- packages = ["MTM" ],
15+ url = "https://github.com/LauLauThom/MultiTemplateMatching-Python" ,
16+ packages = ["MTM" ],
1717 install_requires = [
18- 'numpy' ,
18+ 'numpy' ,
1919 'opencv-python' ,
2020 'scikit-image' ,
2121 'scipy'
22- ],
23- classifiers = [
24- "Programming Language :: Python :: 3" ,
25- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
22+ ],
23+ classifiers = [
24+ "Programming Language :: Python :: 3" ,
25+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
2626 "Operating System :: OS Independent" ,
2727 "Topic :: Scientific/Engineering :: Image Recognition"
28- ],
28+ ],
2929)
0 commit comments