-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (30 loc) · 964 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
30
31
32
33
34
# SPDX-FileCopyrightText: 2023 Phu Hung Nguyen <phuhnguyen@outlook.com>
# SPDX-License-Identifier: CC0-1.0
[tool.poetry]
name = "hugo-gettext"
version = "0.6.0"
description = "I18n with gettext for Hugo"
authors = ["Phu Hung Nguyen <phuhnguyen@outlook.com>"]
license = "LGPL-2.1-or-later"
readme = "README.md"
repository = "https://github.com/phunh/hugo-gettext"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Internationalization",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
packages = [{include = "hugo_gettext"}]
[tool.poetry.dependencies]
python = "^3.8"
mdit-py-i18n = "^0.2.1"
markdown-gettext = "^0.2.1"
mdit-py-hugo = "^0.3.1"
tomlkit = "^0.12.1"
[tool.poetry.scripts]
hugo-gettext = 'hugo_gettext.cli:main'
hugo-i18n = 'hugo_gettext.cli:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"