44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[build-system]
|
|
build-backend = "flit_core.buildapi"
|
|
requires = ["flit_core >=3.8.0,<4"]
|
|
|
|
[project]
|
|
name = "rougail"
|
|
version = "1.2.0a65"
|
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
|
readme = "README.md"
|
|
description = "A consistency handling system that was initially designed in the configuration management"
|
|
requires-python = ">=3.10"
|
|
license = {file = "LICENSE"}
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
"Natural Language :: English",
|
|
"Natural Language :: French",
|
|
|
|
]
|
|
dependencies = [
|
|
"ruamel.yaml ~= 0.18.6",
|
|
"pydantic ~= 2.9.2",
|
|
"rougail-base == 1.2.0a65",
|
|
]
|
|
|
|
[tool.flit.sdist]
|
|
exclude = [
|
|
"src/rougail/error.py",
|
|
"src/rougail/i18n.py",
|
|
"src/rougail/tiramisu.py",
|
|
"src/rougail/user_datas.py",
|
|
"src/rougail/utils.py",
|
|
"src/rougail/__version__.py",
|
|
]
|
|
|
|
[project.urls]
|
|
Home = "https://forge.cloud.silique.fr/stove/rougail"
|