-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.06 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-pdf"
description = "MkDocs plugin for embedding PDFs in a Markdown way"
readme = "README.md"
authors = [{name = "Thomas Rooijakkers", email = "thomas.rooijakkers@tno.nl"}]
maintainers = [{name = "Thomas Rooijakkers", email = "thomas.rooijakkers@tno.nl"}]
keywords = [
"mkdocs",
"pdf",
"embed",
]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
]
urls = {Homepage = "https://github.com/ThomasTNO/mkdocs-pdf", Source = "https://github.com/ThomasTNO/mkdocs-pdf"}
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"lxml"
]
[tool.setuptools]
platforms = ["any"]
[tool.setuptools.dynamic]
version = {attr = "mkdocs_pdf.__version__"}
[project.entry-points."mkdocs.plugins"]
"mkdocs-pdf"= "mkdocs_pdf.plugin:Plugin"