pdf-to-table / pyproject.toml
regraded01's picture
build: change to poetry build
eb7d3d8
raw
history blame
495 Bytes
[tool.poetry]
name = "pdf-to-table"
version = "0.1.0"
description = "Extract key-value pairs from PDF documents"
authors = ["Jon Fuller <jonfuller0207@gmail.com>"]
readme = "README.md"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
streamlit = "^1.35.0"
pypdf2 = "^3.0.1"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"