forked from breezedeus/Pix2Text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
82 lines (74 loc) · 2.07 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python3
# coding: utf-8
# Copyright (C) 2022, [Breezedeus](https://github.com/breezedeus).
import os
from setuptools import find_packages, setup
from pathlib import Path
PACKAGE_NAME = "pix2text"
here = Path(__file__).parent
long_description = (here / "README.md").read_text(encoding="utf-8")
about = {}
exec(
(here / PACKAGE_NAME.replace('.', os.path.sep) / "__version__.py").read_text(
encoding="utf-8"
),
about,
)
required = [
"click",
"tqdm",
"numpy<1.24",
"opencv-python",
"cnocr>=2.2.2.2",
"cnstd>=1.2.2",
"torch",
"torchvision",
"pix2tex",
]
extras_require = {
"dev": ["pip-tools", "pytest"],
"serve": ["uvicorn[standard]", "fastapi", "python-multipart", "pydantic"],
}
entry_points = """
[console_scripts]
p2t = pix2text.cli:cli
"""
setup(
name=PACKAGE_NAME,
version=about['__version__'],
description="Python3 package to extract text information from images",
long_description=long_description,
long_description_content_type="text/markdown",
author='breezedeus',
author_email='[email protected]',
license='MIT',
url='https://github.com/breezedeus/pix2text',
platforms=["Mac", "Linux", "Windows"],
packages=find_packages(),
include_package_data=True,
data_files=[
(
'',
[
'pix2text/latex_config.yaml',
],
)
],
entry_points=entry_points,
install_requires=required,
extras_require=extras_require,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)