-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (35 loc) · 917 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "pdf2john"
version = "0.2.0"
description = "A modern refactoring of the legacy pdf2john library"
authors = ["Benjamin Dornel <[email protected]>"]
license = "MIT"
repository = "https://github.com/benjamin-awd/pdf2john"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11",
"Topic :: Security"
]
[tool.poetry.dependencies]
python = "^3.11"
pyhanko = ">=0.21,<0.26"
[tool.poetry.group.dev.dependencies]
black = ">=23.9.1,<25.0.0"
isort = "^5.12.0"
taskipy = "^1.12.0"
pytest = ">=7.4.2,<9.0.0"
ruff = ">=0.5.0,<0.9.0"
[tool.taskipy.tasks]
format = "isort . && black ."
lint = "ruff check ."
test = "pytest ."
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pdf2john = "pdf2john.pdf2john:main"