forked from Nepherhotep/unwrap_labels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 963 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
from setuptools import setup, find_packages
__author__ = 'Alexey Zankevich'
setup(
name="unwrap_labels",
version="1.1.3",
py_modules=['unwrap_labels'],
author=__author__,
author_email="[email protected]",
description="Library to unwrap labels using OpenCV",
keywords=["OpenCV"],
license="MIT",
platforms=['Platform Independent'],
url="https://github.com/Nepherhotep/unwrap_labels",
install_requires=["numpy", "opencv-contrib-python"],
classifiers=["Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"]
)