pdf-utils/pyproject.toml

35 lines
549 B
TOML
Raw Permalink Normal View History

2024-11-24 19:28:20 +00:00
[project]
name = "pdf-utils"
version = "0.0.1"
description = "Slim PDF Utilities"
readme = "README.md"
2024-11-25 21:18:52 +00:00
requires-python = ">=3.9"
2024-11-24 19:28:20 +00:00
dependencies = [
"pypdf>=5.1.0",
]
2024-11-25 21:11:32 +00:00
[project.optional-dependencies]
s3 = [
"s3fs>=2024.10.0",
]
# [tool.uv]
# package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pdf_utils/"]
[dependency-groups]
dev = [
"black>=24.10.0",
"flake8>=7.1.1",
"isort>=5.13.2",
]
[project.scripts]
pdfcat = "pdf_utils.cat_pdf:run"