pdf-table-extractor/pyproject.toml

26 lines
737 B
TOML
Raw Normal View History

2024-04-27 21:23:40 +00:00
[tool.poetry]
name = "pdf_table_extractor"
version = "0.1.0"
description = "Tool for extracting tabular data from PDFs"
authors = ["LunarEclipse <luna@lunareclipse.zone>"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
pygobject = "^3.48.2"
tabula-py = "^2.9.0"
PyMuPDF = "^1.24.0"
2024-04-28 13:16:30 +00:00
pillow = "^10.3.0"
2024-04-27 21:23:40 +00:00
#pdfplumber = "^0.11.0"
#PySide6 = "^6.6.3" # qt
[tool.poetry.group.dev.dependencies]
2024-04-28 13:16:30 +00:00
# this is actually broken lol, fix by running following in venv:
# pip uninstall pygobject-stubs && pip install pygobject-stubs --no-cache-dir --config-settings=config=Gtk3,Gdk3,Soup2
pygobject-stubs = "^2.11.0"
2024-04-27 21:23:40 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"