1
1
import setuptools
2
2
3
3
with open ("README.md" , "r" ) as fh :
4
- long_description = fh .read ()
4
+ long_description = fh .read ()
5
5
6
6
setuptools .setup (
7
- name = "Multi-Template-Matching" ,
8
- version = "1.1 " ,
9
- author = "Laurent Thomas" ,
10
- author_email = "laurent132.thomas@laposte.net" ,
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
+ author_email = "laurent132.thomas@laposte.net" ,
11
+ description = "Object-recognition in images using multiple templates" ,
12
+ long_description = long_description ,
13
+ long_description_content_type = "text/markdown" ,
14
14
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" ],
17
17
install_requires = [
18
- 'numpy' ,
18
+ 'numpy' ,
19
19
'opencv-python' ,
20
20
'scikit-image' ,
21
21
'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)" ,
26
26
"Operating System :: OS Independent" ,
27
27
"Topic :: Scientific/Engineering :: Image Recognition"
28
- ],
28
+ ],
29
29
)
0 commit comments