-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
31 lines (28 loc) · 924 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
[tool.poetry]
name = "floxdocs"
version = "0.1.0"
description = "Documentation for flox"
authors = ["Rok Garbas <[email protected]>"]
license = "TODO"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "3.11.*"
cairosvg = "*"
mkdocs = "*"
mkdocs-awesome-pages-plugin = "*"
mkdocs-glightbox = "*"
mkdocs-include-markdown-plugin = "*"
mkdocs-macros-plugin = "*"
mkdocs-material = { path = "./mkdocs_material-9.5.10+insiders.4.52.2.tar.gz", extras = [ "images" ] }
mkdocs-material-extensions = "*"
mkdocs-d2-plugin = "*"
pillow = "9.4.0" # 9.5.0 is not building with Nix
pymdown-extensions = "*"
# PR waiting in upstream: https://github.com/OceanSprint/tesh/pull/45
tesh = { git = "https://github.com/garbas/tesh", branch = "remove-mkdocs-code-annotations" }
[tool.poetry.dev-dependencies]
trove-classifiers = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"