forked from vmware-archive/gangway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 935 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gangway"
version = "1.0"
description = "Gangway Kubernetes configuration generator documentation"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Numberly", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"mkdocs>=1.5.3",
"mkdocs-static-i18n",
]
[project.urls]
Documentation = "https://github.com/numberly/gangway#readme"
Download = "https://github.com/numberly/gangway/tags"
Homepage = "https://github.com/numberly/gangway"
Source = "https://github.com/numberly/gangway"
Tracker = "https://github.com/numberly/gangway/issues"
[project.optional-dependencies]
material = ["mkdocs-material>=9.2.5"]
[tool.hatch.envs.docs]
dependencies = [
"mkdocs-material>=9.2.5"
]