forked from dunossauro/fastapi-do-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 967 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 = "fastapi-do-zero"
version = "0.1.0"
description = ""
authors = ["dunossauro <[email protected]>"]
readme = "README.md"
packages = [{include = "fastapi-do-zero"}]
[tool.poetry.dependencies]
python = "^3.11"
mkdocs = "^1.4.3"
mkdocs-material = "9.1.15"
taskipy = "^1.11.0"
mkdocs-glightbox = "^0.3.4"
mkdocs-video = "^1.5.0"
mkdocs-git-authors-plugin = "^0.7.2"
mkdocs-git-revision-date-localized-plugin = "^1.2.0"
pillow = "^10.0.0"
cairosvg = "^2.7.0"
mkdocs-with-pdf = "^0.9.3"
[tool.taskipy.tasks]
serve = "mkdocs serve --dev-addr localhost:8080"
deploy = "mkdocs gh-deploy"
slides = "marp -I slides/brutos/ --html --theme slides/brutos/rose-pine.css --allow-local-files --pdf -o slides/pdf/"
slides_html = "marp -I slides/brutos --html --theme slides/brutos/rose-pine.css --allow-local-files -o slides/html"
pdf = "ENABLE_PDF_EXPORT=1 mkdocs build"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"