feat: update docs and python requirements

This commit is contained in:
JiJi
2026-05-05 22:14:49 +08:00
parent 9f7445642a
commit 74e93050be
7 changed files with 124 additions and 121 deletions
+32
View File
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pdfuck"
dynamic = ["version"]
description = "PDFuck: Remove the password of your PDF file. A tool to remove PDF editing password, which is used in CLI (command line) mode."
readme = "README.md"
license = "GPL-3.0"
authors = [
{ name = "JiJi", email = "i@mmdjiji.com" },
]
requires-python = ">=3.8"
dependencies = [
"pikepdf",
]
classifiers = [
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/mmdjiji/pdfuck"
[project.scripts]
pdfuck = "pdfuck:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pdfuck*"]
[tool.setuptools_scm]