-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (30 loc) · 951 Bytes
/
setup.py
File metadata and controls
37 lines (30 loc) · 951 Bytes
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
36
37
import setuptools
setuptools.setup(
name="fineocr",
version="0.3",
url="https://github.com/kfur/fineocr",
download_url='https://github.com/kfur/fineocr/archive/refs/tags/v0.3.tar.gz',
author="kfur",
author_email="deniskovpen@gmail.com",
description="FineScanner Mobile OCR for free",
keywords=['OCR'],
packages=['fineocr'],
install_requires=[
"aiohttp>=3.6",
"aiofiles>=0.5",
],
python_requires="~=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points="""
[console_scripts]
fineocr=fineocr.__main__:main
""",
)