-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
70 lines (66 loc) · 1.54 KB
/
pyproject.toml
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
[tool.poetry]
name = "unimernet"
version = "0.2.1"
description = 'UniMERNet: A Universal Network for Real-World Mathematical Expression Recognition'
authors = ["Bin Wang <[email protected]>"]
readme = "README.md"
license = "Apache License 2.0"
repository = "https://github.com/opendatalab/UniMERNet"
keywords = ["MER", "latex", "markdown", "pdf"]
include = [
"train.py",
"test.py",
"demo.py",
"unimernet_app.py",
"run_unimernet_app.py",
]
[tool.poetry.dependencies]
python = ">=3.10"
torch = ">=2.2.2,<=2.3.1"
torchvision = ">=0.17.2,<=0.18.1"
torchtext = ">=0.17.2,<=0.18.0"
omegaconf = "^2.3.0"
matplotlib = "^3.8.4"
iopath = "^0.1.9"
timm = "^0.9.16"
opencv-python = "^4.6.0"
transformers = "4.42.4"
fairscale = "^0.4.13"
# ftfy = "^6.2.0"
ftfy = {version = "^6.2.0", python = ">=3.10,<4.0"}
albumentations = "^1.4.4"
wand = "^0.6.13"
eva-decord = "^0.6.1"
webdataset = "^0.2.86"
rapidfuzz = "^3.8.1"
termcolor = "^2.4.0"
pandas = "^2.2.2"
evaluate = "^0.4.1"
rich = "^13.7.1"
jupyterlab = "^4.1.6"
tabulate = "^0.9.0"
nltk = "^3.8.1"
streamlit = "^1.33.0"
pypdfium2 = "^4.29.0"
pdf2image = "^1.17.0"
streamlit_drawable_canvas = "^0.9.3"
[tool.poetry.extras]
full = [
"termcolor",
"pandas",
"rich",
"jupyterlab",
"tabulate",
"nltk",
"streamlit",
"pypdfium2",
"pdf2image",
"streamlit_drawable_canvas"
]
[tool.poetry.scripts]
unimernet = "demo:main"
unimernet_gui = "run_unimernet_app:run_app"
unimernet_eval = "test:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"