35 lines
549 B
TOML
35 lines
549 B
TOML
[project]
|
|
name = "pdf-utils"
|
|
version = "0.0.1"
|
|
description = "Slim PDF Utilities"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"pypdf>=5.1.0",
|
|
]
|
|
|
|
[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"
|