-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 1017 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='photo_ocr',
version='0.0.5-alpha',
packages=find_packages(exclude=["tests", "tests.*"]),
url='https://github.com/krasch/photo_ocr',
license_files=('LICENSE.txt', 'LICENSE_detection.txt', 'LICENSE_recognition.txt'),
author='krasch',
author_email='[email protected]',
description='Read text in photos / images with complex backgrounds with this easy-to-use Python library.',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.6,<3.9",
install_requires=["torchvision>=0.7.0,<=0.10", "opencv-python==3.4.8.29", "bbdraw"],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'],
)