rougail-cli/pyproject.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2024-10-31 10:01:39 +01:00
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.cli"
2024-11-01 10:52:49 +01:00
version = "0.1.0"
2024-11-01 10:34:46 +01:00
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
2024-10-31 10:01:39 +01:00
readme = "README.md"
description = "CLI for Rougail"
2024-11-01 10:34:46 +01:00
requires-python = ">=3.8"
2024-10-31 10:01:39 +01:00
license = {file = "LICENSE"}
2024-11-01 10:34:46 +01:00
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Natural Language :: French",
2024-10-31 10:01:39 +01:00
2024-11-01 10:34:46 +01:00
]
2024-10-31 10:01:39 +01:00
dependencies = [
"rougail ~= 1.1.0",
2024-11-01 10:34:46 +01:00
"tiramisu_cmdline_parser ~= 0.6.0",
2024-10-31 10:01:39 +01:00
]
[project.scripts]
rougail = "rougail.cli.__main__:main"
[project.urls]
Home = "https://forge.cloud.silique.fr/stove/rougail-cli"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
2024-11-01 10:34:46 +01:00
changelog_merge_prerelease = true