forked from Eric-Canas/QReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.2 KB
/
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
from setuptools import setup, find_namespace_packages
setup(
name='qreader',
version='3.12',
packages=find_namespace_packages(),
# expose qreader.py as the unique module
py_modules=['qreader'],
url='https://github.com/Eric-Canas/qreader',
license='MIT',
author='Eric Canas',
author_email='[email protected]',
description='Robust and Straight-Forward solution for reading difficult and tricky QR codes '
'within images in Python. Supported by a YOLOv8 QR Segmentation model.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'opencv-python',
'pyzbar',
'qrdet>=2.1',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)