-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.07 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
[build-system]
requires = ["poetry-core>=1.5.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "tacc-docs"
version = "1.0.0"
description = "TACC Systems Documentation"
authors = [
{ name = "TACC COA CMD", email = "[email protected]" }
]
maintainers = [
{ name = "TACC COA CMD", email = "[email protected]" },
{ name = "TACC ACI WMA", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"mkdocs-macros-plugin>=1.0.4",
"mkdocs-exclude-search>=0.6.6",
"mkdocs-tacc[all] (>=0.5.3,<0.6.0)",
]
# FAQ: for Poetry 1.x compatibility (Poetry 2+ should use above format)
[tool.poetry.dependencies]
# mkdocs (implicitely installed via "mkdocs-tacc")
mkdocs-macros-plugin = ">=1.0.4"
mkdocs-exclude-search = "^0.6.6"
[project.urls]
homepage = "https://docs.tacc.utexas.edu"
documentation = "https://github.com/TACC/TACC-Docs/blob/main/README.md"
github = "https://github.com/TACC/TACC-Docs"
issues = "https://github.com/TACC/TACC-Docs/issues"
changelog = "https://github.com/TACC/TACC-Docs/releases"