forked from gisce/markdown-blockdiag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 1 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
[tool.poetry]
name = "blockdiag-fences"
version = "0.0.3"
description = "Inline blockdiag images for Markdown with SuperFences"
authors = ["Oliver Salzburg <oliver.salzburg@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/oliversalzburg/markdown-blockdiag.git"
keywords = ["blockdiag", "seqdiag", "mkdocs", "markdown", "superfences"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown"
]
[tool.poetry.dependencies]
python = "3.12.0"
blockdiag = "3.0.0"
seqdiag = "3.0.0"
nwdiag = "3.0.0"
actdiag = "3.0.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"