-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 928 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
37
38
[project]
name = "mkdocs-landing"
version = "0.0.8"
authors = [
{name = "Todd Parsons", email = "[email protected]"}
]
description = "mkdocs theme geared towards making a personal landing page, with simpler navigation and heavily customisable style options."
readme = "README.md"
dependencies = [
"mkdocs"
]
[project.optional-dependencies]
tests = [
"pytest",
"httpx",
"pyyaml",
"mkdocs-get-deps",
"mkdocs-material",
"shot-scraper",
"jinja2",
"tqdm",
"uv",
"mkdocstrings-python",
]
[project.urls]
Homepage = "https://TEParsons.github.io/mkdocs-landing"
Download = "https://github.com/TEParsons/mkdocs-landing/releases"
[tool.setuptools]
packages = ["mkdocs_landing"]
[tool.setuptools.package-data]
mkdocs_landing = ["**/*.html", "**/*.css", "**/*.yml", "**/*.jpg", "**/*.png", "**/*.json", "**/*.ttf"]
[project.entry-points."mkdocs.themes"]
landing = "mkdocs_landing"