-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.01 KB
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
40
41
42
43
44
[tool.poetry]
name = "mkdocs-drawio"
version = "1.11.1"
description = "MkDocs plugin for embedding Drawio files"
authors = [
"Jan Larwig <jan@larwig.com>",
"Sergey Lukin <onixpro@gmail.com>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tuunit/mkdocs-drawio/"
homepage = "https://github.com/tuunit/mkdocs-drawio/"
keywords = [
"mkdocs", "plugin", "markdown", "drawio"
]
packages = [
{ include = "mkdocs_drawio/plugin.py" },
]
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0"
requests = ">=2.0"
Jinja2 = ">=3.0"
beautifulsoup4 = ">=4.0"
lxml = ">=4.0"
mkdocs = ">=1.4"
[tool.poetry.group.dev.dependencies]
python = ">=3.8.0,<4.0"
black = ">=24.0"
ruff = "^0.9.2"
mkdocs-print-site-plugin = "^2.6.0"
mkdocs-material = "^9.5.50"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."mkdocs.plugins"]
drawio = 'mkdocs_drawio.plugin:DrawioPlugin'
[tool.setuptools.packages.find]
include = ["mkdocs_drawio*"]
exclude = ["example*"]