-
Notifications
You must be signed in to change notification settings - Fork 184
/
setup.py
82 lines (74 loc) · 2.46 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
# [Pix2Text](https://github.com/breezedeus/pix2text): an Open-Source Alternative to Mathpix.
# Copyright (C) 2022-2024, [Breezedeus](https://www.breezedeus.com).
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",
"opencv-python",
"cnocr[ort-cpu]>=2.3.0.2",
"cnstd>=1.2.4.2",
"pillow",
"torch",
"torchvision",
"transformers>=4.37.0",
"optimum[onnxruntime]",
"PyMuPDF",
"pyspellchecker",
]
extras_require = {
"multilingual": ["easyocr"],
"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="An Open-Source Python3 tool for recognizing layouts, tables, math formulas, and text in images, converting them into Markdown format. A free alternative to Mathpix, empowering seamless conversion of visual content into text-based representations.",
long_description=long_description,
long_description_content_type="text/markdown",
author='breezedeus',
author_email='breezedeus@163.com',
license='MIT',
url='https://github.com/breezedeus/pix2text',
platforms=["Mac", "Linux", "Windows"],
packages=find_packages(),
include_package_data=True,
# data_files=[('', ['pix2text/doc_xl_layout/map_info.json',],)],
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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)