2024-01-28 19:03:09 +01:00
|
|
|
[build-system]
|
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
requires = ["flit_core >=3.8.0,<4"]
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "rougail"
|
2024-01-28 20:43:45 +01:00
|
|
|
version = "1.0.2"
|
2024-01-28 19:03:09 +01:00
|
|
|
authors = [
|
|
|
|
{name = "Emmanuel Garette", email = "gnunux@gnunux.info"},
|
|
|
|
]
|
|
|
|
description = "A consistency handling system that was initially designed in the configuration management"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
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",
|
2024-10-30 18:55:52 +01:00
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
2024-01-28 19:03:09 +01:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Natural Language :: French",
|
|
|
|
|
|
|
|
]
|
|
|
|
dependencies = [
|
2024-10-30 18:55:52 +01:00
|
|
|
"ruamel.yaml ~= 0.18.6",
|
|
|
|
"pydantic ~= 2.9.2",
|
|
|
|
"jinja2 ~= 3.1.4",
|
|
|
|
"tiramisu ~= 5.0.0"
|
2024-01-28 19:03:09 +01:00
|
|
|
]
|
2024-07-02 16:35:28 +02:00
|
|
|
|
2024-11-01 09:04:27 +01:00
|
|
|
[project.urls]
|
|
|
|
Home = "https://forge.cloud.silique.fr/stove/rougail"
|
|
|
|
|
2024-07-02 16:35:28 +02:00
|
|
|
[project.optional-dependencies]
|
2024-01-28 19:03:09 +01:00
|
|
|
dev = [
|
|
|
|
"pylint ~= 3.0.3",
|
2024-07-02 16:35:28 +02:00
|
|
|
"pytest ~= 8.2.2",
|
|
|
|
"lxml ~= 5.2.2"
|
2024-01-28 19:03:09 +01:00
|
|
|
]
|
2024-01-28 20:43:45 +01:00
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
name = "cz_conventional_commits"
|
|
|
|
tag_format = "$version"
|
2024-10-30 18:55:52 +01:00
|
|
|
version_scheme = "pep440"
|
2024-01-28 20:43:45 +01:00
|
|
|
version_provider = "pep621"
|
|
|
|
update_changelog_on_bump = true
|