-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 987 Bytes
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
[project]
name = "element"
version = "0.0.0"
description = "Siemens Element design system documentation."
authors = [{ name = "Siemens", email = "opensource@siemens.com" }]
license = "MIT"
requires-python = ">=3.11, <4"
readme = "README.md"
dependencies = [
"mkdocs-code-siemens-code-docs-theme>=8,<9",
"mkdocs-minify-html-plugin==0.3.10",
"mkdocs-element-docs-builder",
]
[project.urls]
Homepage = "https://element.siemens.io"
Repository = "https://github.com/siemens/element.git"
Documentation = "https://element.siemens.io"
[tool.uv]
package = false
[[tool.uv.index]]
name = "code-docs-theme"
url = "https://code.siemens.com/api/v4/groups/3259/-/packages/pypi/simple"
explicit = true
[tool.uv.sources]
mkdocs-code-siemens-code-docs-theme = { index = "code-docs-theme" }
mkdocs-element-docs-builder = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.workspace]
members = [
"projects/element-docs-builder",
]