-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 846 Bytes
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
[tool.poetry]
name = "mdx_alerts"
version = "1.0.1"
description = "Python-Markdown extension to support bootstrap alerts"
authors = ["Florian Dahlitz <f2dahlitz@freenet.de>"]
keywords = ["python-markdown", "extension", "python-markdown extension", "bootstrap alerts", "bootstrap alerts extension"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/DahlitzFlorian/python-markdown-bootstrap-alerts"
repository = "https://github.com/DahlitzFlorian/python-markdown-bootstrap-alerts"
packages = [
{ include = "mdx_alerts.py" },
]
include = [
"LICENSE",
]
[tool.poetry.scripts]
mdx_alerts = "mdx_alerts:AlertExtension"
[tool.poetry.dependencies]
python = "^3.6"
Markdown = "^3.3.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"