-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (58 loc) · 1.36 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
authors = [
{name = "vvanglro", email = "[email protected]"},
]
license = {text = "Apache-2.0"}
requires-python = ">=3.8,<4.0"
dependencies = [
"playwright",
"jinja2<4.0.0,>=3.1.2",
]
name = "pwhtmltopdf"
version = "0.2.0"
description = "playwright render html to pdf"
readme = "README.md"
keywords = [
"playwright",
"html",
"pdf",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3 :: Only',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
homepage = "https://github.com/vvanglro/pwhtmltopdf"
repository = "https://github.com/vvanglro/pwhtmltopdf.git"
documentation = "https://github.com/vvanglro/pwhtmltopdf"
[tool.pdm.dev-dependencies]
dev = [
"pre-commit<3.0.0,>=2.20.0",
"pytest<8.0.0,>=7.1.3",
"pytest-asyncio<1.0.0,>=0.19.0",
"mypy<1.0,>=0.971",
]
[tool.ruff]
ignore = [
"E402"
]
select = [
"I", # isort
"E", # pycodestyle
"F", # pyflakes
]
line-length = 130
[tool.pdm.build]
includes = []
excludes = [
"tests/effect",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"