-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
60 lines (56 loc) · 1.69 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mkdocs_puml"
version = "2.3.0"
description = "Package that brings PlantUML to MkDocs"
authors = ["Mikhail Kravets <michkravets@gmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/MikhailKravets/mkdocs_puml"
repository = "https://github.com/MikhailKravets/mkdocs_puml"
documentation = "https://mikhailkravets.github.io/mkdocs_puml/"
keywords = [
"markdown",
"mkdocs",
"plantuml",
"puml",
"uml",
"documentation",
"diagram",
"uml-diagrams",
"plugin",
"mkdocs-plugin",
]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Framework :: MkDocs",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown",
]
[tool.poetry.plugins."mkdocs.plugins"]
plantuml = "mkdocs_puml.plugin:PlantUMLPlugin"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.27"
markdown = "^3.2"
mkdocs = "^1.4"
msgpack = "^1.1"
rich = "^13.9"
[tool.poetry.group.dev.dependencies]
mkdocs-material = "*"
mkdocs-awesome-pages-plugin = "*"
pytest = "*"
pytest-cov = "*"
flake8 = "*"
pre-commit = "*"
importlib-metadata = { version = ">=8.5", markers = "python_version < '3.10'" }
zipp = { version = ">=3.20", markers = "python_version < '3.10'" }
exceptiongroup = { version = ">=1.2", markers = "python_version < '3.11'" }
tomli = { version = ">=2.0", markers = "python_version < '3.11'" }
typing-extensions = { version = ">=4.12.2", markers = "python_version < '3.11'" }
pytest-httpx = "*"