-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (26 loc) · 918 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
# SPDX-FileCopyrightText: 2023 Phu Hung Nguyen <[email protected]>
# SPDX-License-Identifier: CC0-1.0
[tool.poetry]
name = "mdit-py-i18n"
version = "0.2.1"
description = "Markdown i18n and l10n using markdown-it-py"
authors = ["Phu Hung Nguyen <[email protected]>"]
license = "LGPL-2.1-or-later"
readme = "README.md"
repository = "https://github.com/phunh/mdit-py-i18n"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Internationalization",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
packages = [{include = "mdit_py_i18n"}]
[tool.poetry.dependencies]
python = "^3.8"
markdown-it-py = {extras = ["plugins"], version = "^3.0.0"}
Pygments = "^2.16.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"