generated from mkdocs/mkdocs-basic-theme
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.33 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
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-hackclub"
version = "0.1"
description = "Hack Club Theme for MkDocs"
readme = "README.md"
license = "MIT"
authors = [
{name = "Andrei Jiroh Halili", email = "[email protected]"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: MkDocs",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation",
]
dependencies = [
"mkdocs >= 1.5",
"pymdown-extensions >= 10.12",
"pygments >= 2.18.0",
"jinja2 >= 3.1.4",
"markdown >= 3.7"
]
[project.urls]
Source = "https://github.com/lorebooks-wiki/hackclub-theme-mkdocs"
[project.entry-points."mkdocs.themes"]
hackclub = "hackclub.templates"
[tool.hatch.build]
include = ["/hackclub"]
[tool.poetry]
name = "mkdocs-hackclub"
version = "0.1"
description = "Hack Club Theme for MkDocs"
authors = [
"Andrei Jiroh Halili"
]
dependencies = {python = ">= 3.10",mkdocs = ">= 1.5",pymdown-extensions = "^10.12",pygments = "^2.18.0",jinja2 = "^3.1.4",markdown = "^3.7"}
# workaround: https://github.com/python-poetry/poetry/issues/8662#issuecomment-1905050446
packages = [
{include = "hackclub"}
]
license = "MIT"