-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 772 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 = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-techdocs-modethirteen-plugins"
dynamic = ["version"]
authors = [
{ name = "James Andrew Vaughn", email = "jamesvaughn@modethirteen.com" }
]
description = "A collection of MkDocs plugins designed to work with Spotify's TechDocs system"
readme = "README.md"
requires_python = ">=3.7"
dependencies = [
"mkdocs"
]
[tool.hatch.version]
path = "modethirteen/mkdocs/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["modethirteen"]
[tool.hatch.build.targets.sdist]
exclude = ["tests"]
[tool.hatch.build]
only-packages = true
[project.entry-points."mkdocs.plugins"]
"modethirteen.techdocs-metadata" = "modethirteen.mkdocs.metadata:TechDocsMetadataPlugin"