-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.65 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=45", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-header-dropdown"
dynamic = ["version"]
description = "A MkDocs plugin to add configurable dropdown menus to the Material theme header"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["mkdocs", "plugin", "dropdown", "navigation", "material-theme", "documentation"]
authors = [
{name = "CMS Common Analysis Tools"},
]
maintainers = [
{name = "CMS Common Analysis Tools"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown",
"Framework :: MkDocs",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"mkdocs>=1.4.0",
"pyyaml",
]
[project.urls]
Homepage = "https://github.com/cms-cat/mkdocs-header-dropdown"
Repository = "https://github.com/cms-cat/mkdocs-header-dropdown"
Issues = "https://github.com/cms-cat/mkdocs-header-dropdown/issues"
Documentation = "https://github.com/cms-cat/mkdocs-header-dropdown#readme"
[project.entry-points."mkdocs.plugins"]
header-dropdown = "mkdocs_header_dropdown.plugin:HeaderDropdownPlugin"
[tool.setuptools]
packages = ["mkdocs_header_dropdown"]
include-package-data = true
[tool.setuptools.package-data]
mkdocs_header_dropdown = ["templates/**/*"]
[tool.setuptools_scm]
local_scheme = "no-local-version"