-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (46 loc) · 1.2 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = [
"hatchling>=1.10.0",
]
build-backend = "hatchling.build"
[project]
name = "mkdocs-yamp"
description = "Yet Another Multirepo Plugin for MkDocs. Adds additional repositories to a directory within the docs directory to be referenced in the navigation"
dynamic = ["version"]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=2.7"
authors = [
{ name = "Steven Terrana", email = "[email protected]" },
]
keywords = [
"mkdocs",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
dependencies = [
"mkdocs>=1.0.4",
"GitPython>=3.1.27"
]
[project.entry-points."mkdocs.plugins"]
yamp = "yamp.plugin:YAMP"
[project.urls]
Homepage = "https://github.com/boozallen/mkdocs-yamp-plugin"
[tool.hatch.version]
path = "yamp/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/yamp",
]
exclude = [
'/.github',
'/docs'
]