Skip to content

Commit b1f2eb6

Browse files
committed
Fix: added psutil to the deps
1 parent 101cde3 commit b1f2eb6

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

pyproject.toml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,8 @@ readme = "README.md"
77
license = "GPL-3.0-or-later"
88
repository = "https://github.com/VikParuchuri/marker"
99
keywords = ["pdf", "markdown", "ocr", "nlp"]
10-
packages = [
11-
{include = "marker"}
12-
]
13-
include = [
14-
"marker/scripts/*.sh",
15-
"marker/scripts/*.html",
16-
]
10+
packages = [{ include = "marker" }]
11+
include = ["marker/scripts/*.sh", "marker/scripts/*.html"]
1712

1813
[tool.poetry.dependencies]
1914
python = "^3.10"
@@ -37,15 +32,16 @@ google-genai = "^1.0.0"
3732
anthropic = "^0.46.0"
3833
pre-commit = "^4.2.0"
3934
scikit-learn = "^1.6.1"
35+
psutil = "^7.1.0"
4036

4137
# Optional dependencies for documents
42-
mammoth = {version = "^1.9.0", optional = true}
43-
openpyxl = {version = "^3.1.5", optional = true}
44-
python-pptx = {version = "^1.0.2", optional = true}
45-
ebooklib = {version = "^0.18", optional = true}
46-
weasyprint = {version = "^63.1", optional = true}
38+
mammoth = { version = "^1.9.0", optional = true }
39+
openpyxl = { version = "^3.1.5", optional = true }
40+
python-pptx = { version = "^1.0.2", optional = true }
41+
ebooklib = { version = "^0.18", optional = true }
42+
weasyprint = { version = "^63.1", optional = true }
4743
openai = "^1.65.2"
48-
psutil = "^7.1.0"
44+
4945

5046
[tool.poetry.group.dev.dependencies]
5147
jupyter = "^1.0.0"

0 commit comments

Comments
 (0)