-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
29 lines (27 loc) · 837 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Multi-Template-Matching",
version="1.3",
author="Laurent Thomas",
author_email="laurent132.thomas@laposte.net",
description="Object-recognition in images using multiple templates",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="object-recognition object-localization",
url="https://github.com/LauLauThom/MultiTemplateMatching-Python",
packages=["MTM"],
install_requires=[
'numpy',
'opencv-python',
'scikit-image',
'scipy'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Recognition"
],
)