-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.77 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
53
54
55
56
57
[build-system]
requires = ["poetry-core>=1.5.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = true
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: MkDocs",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Documentation",
]
[project]
name = "mkdocs-tacc"
version = "0.5.3"
description = "TACC-specific MkDocs theme"
authors = [
{ name = "TACC COA CMD", email = "coa-cmd@tacc.utexas.edu" }
]
maintainers = [
{ name = "TACC COA CMD", email = "coa-cmd@tacc.utexas.edu" },
{ name = "TACC ACI WMA", email = "wma-portals@tacc.utexas.edu" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"mkdocs==1.4.3"
]
[project.optional-dependencies]
i18n = ["mkdocs[i18n]==1.4.3"]
pymdown-extensions = ["pymdown-extensions>=10.4.0"]
all = ["mkdocs[i18n]==1.4.3", "pymdown-extensions>=10.4.0"]
# FAQ: for Poetry 1.x compatibility (Poetry 2+ should use above format)
[tool.poetry.dependencies]
mkdocs = "==1.4.3"
pymdown-extensions = {version = ">=10.4.0", optional = true}
[tool.poetry.extras]
i18n = [] # empty cuz Poetry 1.x cannot handle nested extra; use pip for `i18n`
pymdown-extensions = ["pymdown-extensions"]
all = ["pymdown-extensions"] # for consistency with `all` offered for PIP users
[project.urls]
homepage = "https://tacc.github.io/mkdocs-tacc"
documentation = "https://tacc.github.io/mkdocs-tacc"
github = "https://github.com/TACC/mkdocs-tacc"
issues = "https://github.com/TACC/mkdocs-tacc/issues"
changelog = "https://github.com/TACC/mkdocs-tacc/releases"
[project.entry-points."mkdocs.themes"]
"tacc_readthedocs" = "mkdocs_tacc.tacc_readthedocs"