-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 961 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-zip-bundle-plugin"
version = "0.1.1"
description = "A MkDocs plugin to bundle specific code blocks into a downloadable ZIP or raw file."
readme = "README.md"
authors = [{ name = "Daemonless" }]
license = { text = "MIT" }
requires-python = ">=3.8"
keywords = ["mkdocs", "zip", "bundle", "placeholders", "interactive"]
dependencies = [
"mkdocs>=1.4.0",
"beautifulsoup4>=4.11.0"
]
[project.urls]
Homepage = "https://github.com/daemonless/mkdocs-zip-bundle-plugin"
Repository = "https://github.com/daemonless/mkdocs-zip-bundle-plugin"
"Bug Tracker" = "https://github.com/daemonless/mkdocs-zip-bundle-plugin/issues"
[project.entry-points."mkdocs.plugins"]
zip-bundle = "mkdocs_zip_bundle.plugin:ZipBundlePlugin"
[tool.setuptools.packages.find]
include = ["mkdocs_zip_bundle*"]
[tool.setuptools.package-data]
mkdocs_zip_bundle = ["assets/*"]