forked from orzih/mkdocs-with-pdf
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
86 lines (78 loc) · 2.08 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-to-pdf"
version = "0.10.1"
description = "Generate a single PDF file from an `mkdocs` repository"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"beautifulsoup4 >= 4.9.3",
"libsass >= 0.23.0",
"mkdocs >= 1.6.1",
"weasyprint == 62.3",
"pydyf == 0.10.0",
]
authors = [
{ name = "orzih" },
]
maintainers = [
{ name = "Dom Walters" },
{ name = "Hideyuki Kato" },
]
keywords = ["mkdocs", "material", "pdf", "weasyprint"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
docs = [
"mkdocs-material == 9.6.7",
"mkdocs-minify-plugin == 0.8.0",
]
samples = [
"markdown-callouts == 0.4.0",
"mdx-gh-links == 0.4",
"mkdocstrings-python == 1.16.5",
"mkdocs-autorefs == 1.4.0",
"mkdocs-click == 0.5.0",
"mkdocs-literate-nav == 0.6.1",
"mkdocs-material == 9.6.7",
"mkdocs-minify-plugin == 0.8.0",
"mkdocs-redirects == 1.2.2",
]
all = ["mkdocs-to-pdf[docs, samples]"]
[project.entry-points."mkdocs.plugins"]
to-pdf = "mkdocs_to_pdf.plugin:WithPdfPlugin"
[project.urls]
Repository = "https://github.com/domWalters/mkdocs-to-pdf"
# [tool.codespell]
# skip = ""
[tool.hatch.build]
include = [
"CONTRIBUTING.md",
"CHANGELOG",
"src/mkdocs_to_pdf/**/*.css",
"src/mkdocs_to_pdf/**/*.html",
"src/mkdocs_to_pdf/**/*.j2",
"src/mkdocs_to_pdf/**/*.js",
"src/mkdocs_to_pdf/**/*.map",
"src/mkdocs_to_pdf/**/*.scss",
"src/mkdocs_to_pdf/**/*.py",
"src/mkdocs_to_pdf/**/py.typed",
]
exclude = [
"samples",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mkdocs_to_pdf"]