-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.83 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
63
64
65
66
[tool.poetry]
name = "mkdocs-pdf-generate"
version = "0.2.3"
description = "An MkDocs plugin to generate individual PDF files from content pages."
readme = "README.md"
documentation = "https://isolveit.github.io/mkdocs-pdf-generate/"
repository = "https://github.com/iSOLveIT/mkdocs-pdf-generate/"
authors = [
"Randy Duodu <[email protected]>",
"4D Systems <[email protected]>",
"Juniel Cruz <[email protected]>"
]
maintainers = [
"Randy Duodu <[email protected]>",
]
license="MIT"
keywords = ["mkdocs", "pdf", "pdf-export", "pdf-generate", "weasyprint"]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Documentation',
'Topic :: Text Processing :: Markup :: Markdown'
]
packages = [
{include = "mkdocs_pdf_generate"}
]
[tool.poetry.plugins."mkdocs.plugins"]
pdf-generate = "mkdocs_pdf_generate.plugin:PdfGeneratePlugin"
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0"
mkdocs = ">=1.4.2"
weasyprint = ">=54.0"
beautifulsoup4 = ">=4.6.3"
jinja2 = ">=3.0.0"
pypdf = ">=3.6.0"
pathlib = ">=1.0"
simple-file-checksum = ">=1.2.2"
mkdocs-material = ">=8.4.0"
[tool.poetry.dev-dependencies]
mkdocs-material-extensions = ">=1.0.3"
mkdocs-minify-plugin = ">=0.5.0"
# formatting dependencies
black = ">=22.3"
isort = ">=5.7.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"