-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 958 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kny_mkdocs"
version = "1.1.1"
description = "Kenyoni MkDocs Plugins"
authors = [
{ name = "Kenyoni Software", email = "[email protected]" }
]
maintainers = [
{ name = "Kenyoni Software", email = "[email protected]" }
]
license = { text = "Proprietary License" }
classifiers = [
"License :: Other/Proprietary License"
]
requires-python = ">= 3.10"
dependencies = [
"beautifulsoup4>=4.13.3",
"mkdocs-material>=9.6.3",
]
[project.entry-points."mkdocs.plugins"]
kny_badge = "kny_mkdocs.badge.plugin:Plugin"
kny_common = "kny_mkdocs.common.plugin:Plugin"
kny_external_link_icon = "kny_mkdocs.external_link_icon.plugin:Plugin"
kny_godot_ref = "kny_mkdocs.godot_ref.plugin:Plugin"
kny_source_ref = "kny_mkdocs.source_ref.plugin:Plugin"
[tool.hatch.build.targets.sdist]
ignore-vcs = true
include = ["kny_mkdocs*"]
[tool.hatch.build.hooks.custom]