forked from onixpro/mkdocs-drawio-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 835 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
[tool.poetry]
name = "mkdocs-drawio-file"
version = "1.5.2"
description = "Mkdocs plugin that renders .drawio files"
authors = ["Sergey Lukin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/onixpro/mkdocs-drawio-file/"
homepage = "https://github.com/onixpro/mkdocs-drawio-file/"
keywords = [
"mkdocs", "plugin", "markdown", "drawio"
]
packages = [
{ include = "mkdocs_drawio_file/plugin.py" },
]
[tool.poetry.dependencies]
python = "^3.7.0"
requests = "^2.27.1"
Jinja2 = "^3.0.3"
beautifulsoup4 = "^4.11.0"
lxml = "^4.9.0"
mkdocs = "^1.4.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."mkdocs.plugins"]
drawio_file = 'mkdocs_drawio_file.plugin:DrawioFilePlugin'