-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
48 lines (43 loc) · 1.45 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mkdocs-exporter"
version = "6.2.0"
repository = "https://github.com/adrienbrignon/mkdocs-exporter"
keywords = ["mkdocs", "pdf", "exporter"]
description = "A highly-configurable plugin for MkDocs that exports your pages to PDF files."
authors = ["Adrien Brignon <[email protected]>"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: HTML",
]
[tool.poetry.dependencies]
python = ">=3.9,<4"
mkdocs = ">=1.4"
playwright = ">=1.33"
beautifulsoup4 = ">=4.12.2"
lxml = ">=4.9"
libsass = ">=0.22.0"
pypdf = ">=4.2.0"
[tool.poetry.plugins."mkdocs.plugins"]
"exporter" = "mkdocs_exporter.plugin:Plugin"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/adrienbrignon/mkdocs-exporter/issues"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0"
mkdocs-material = {version="^9.4.11", extras=["imaging"]}
mkdocs-git-revision-date-localized-plugin = "^1.2.0"
mkdocs-awesome-pages-plugin = "^2.9.1"
mkdocs-macros-plugin = "^1.0.4"
mkdocs-minify-plugin = "^0.6.4"
mkdocs-redirects = "^1.2.0"
mdx-truly-sane-lists = "^1.3"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
mkdocs-git-committers-plugin-2 = "^2.3.0"
bandit = "^1.7.9"