Spaces:
Runtime error
Runtime error
Delete pyproject.toml
Browse files- pyproject.toml +0 -47
pyproject.toml
DELETED
@@ -1,47 +0,0 @@
|
|
1 |
-
[tool.poetry]
|
2 |
-
name = "texify"
|
3 |
-
version = "0.1.6"
|
4 |
-
description = "OCR for latex images"
|
5 |
-
authors = ["Vik Paruchuri <vik.paruchuri@gmail.com>"]
|
6 |
-
readme = "README.md"
|
7 |
-
license = "GPL-3.0-or-later"
|
8 |
-
repository = "https://github.com/VikParuchuri/texify"
|
9 |
-
keywords = ["ocr", "latex", "markdown", "pdf"]
|
10 |
-
include = [
|
11 |
-
"ocr_app.py",
|
12 |
-
"ocr_image.py",
|
13 |
-
"run_ocr_app.py",
|
14 |
-
"benchmark.py"
|
15 |
-
]
|
16 |
-
|
17 |
-
[tool.poetry.dependencies]
|
18 |
-
python = ">=3.10,<4.0"
|
19 |
-
streamlit = "^1.29.0"
|
20 |
-
transformers = "^4.36.2"
|
21 |
-
torch = "^2.1.2"
|
22 |
-
pydantic = "^2.5.2"
|
23 |
-
pydantic-settings = "^2.1.0"
|
24 |
-
Pillow = "^10.1.0"
|
25 |
-
numpy = "^1.26.2"
|
26 |
-
pypdfium2 = "^4.25.0"
|
27 |
-
python-dotenv = "^1.0.0"
|
28 |
-
watchdog = "^3.0.0"
|
29 |
-
ftfy = "^6.1.3"
|
30 |
-
tabulate = "^0.9.0"
|
31 |
-
streamlit-drawable-canvas-jsretry = "^0.9.3"
|
32 |
-
|
33 |
-
[tool.poetry.group.dev.dependencies]
|
34 |
-
jupyter = "^1.0.0"
|
35 |
-
evaluate = "^0.4.1"
|
36 |
-
rapidfuzz = "^3.5.2"
|
37 |
-
pyperclip = "^1.8.2"
|
38 |
-
nltk = "^3.8.1"
|
39 |
-
|
40 |
-
[tool.poetry.scripts]
|
41 |
-
texify = "ocr_image:main"
|
42 |
-
texify_gui = "run_ocr_app:run_app"
|
43 |
-
texify_benchmark = "benchmark:main"
|
44 |
-
|
45 |
-
[build-system]
|
46 |
-
requires = ["poetry-core"]
|
47 |
-
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|