papis-extract/pyproject.toml
Marty Oehme cd5f787220
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/static_analysis Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
chore: Update dependencies to fix single-thread warning
Fixed single-threaded warning provided from the fitz pymupdf library
since the issue does not exist for this new version anymore.
Bump version along the way.
2024-01-18 18:26:00 +01:00

33 lines
695 B
TOML

[tool.poetry]
name = "papis-extract"
version = "0.2.0"
description = ""
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
readme = "README.md"
packages = [{include = "papis_extract"}]
[tool.poetry.dependencies]
python = "^3.11"
pymupdf = "^1.23.1"
levenshtein = "^0.21.1"
papis = "^0.13"
click = "^8.1.7"
whoosh = { version = "^2.7.4", optional = true }
python-magic = "^0.4.27"
chevron = "^0.14.0"
[tool.poetry.extras]
whoosh = ["whoosh"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
coverage = "^7.3.1"
pytest-cov = "^4.1.0"
[tool.poetry.plugins."papis.command"]
extract = "papis_extract:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"