23 lines
563 B
TOML
23 lines
563 B
TOML
|
[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"
|
||
|
#pdfplumber = "^0.11.0"
|
||
|
#PySide6 = "^6.6.3" # qt
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
pygobject-stubs = "^2.11.0" # this is actually broken lol
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|