23 lines
466 B
TOML
23 lines
466 B
TOML
[project]
|
|
name = "majordome"
|
|
version = "0.1.0"
|
|
description = """MàJordome is used to update local softwares that are not automatically
|
|
installed by the system"""
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pydantic>=2.10.6",
|
|
"pydantic-settings>=2.8.1",
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.4",
|
|
"pytest-icdiff>=0.9",
|
|
"pytest-sugar>=1.0.0",
|
|
]
|
|
lint = [
|
|
"black>=25.1.0",
|
|
"ruff>=0.9.9",
|
|
]
|