-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1004 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
30
31
32
33
34
35
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# Read version from MTM/version.py
exec(open('MTM/version.py').read())
setuptools.setup(
name="Multi-Template-Matching",
version=__version__,
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/multi-template-matching/MultiTemplateMatching-Python",
packages=["MTM"],
install_requires=[
'numpy',
'opencv-python-headless>=4.5.4',
'scikit-image',
'scipy',
'pandas'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Recognition",
"Intended Audience :: Science/Research"
],
)