feat: init project

Signed-off-by: Artémis Michelot <artemis.michelot@gmail.com>
This commit is contained in:
2025-09-25 01:48:21 +02:00
commit c11e0954fb
5 changed files with 772 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "freebox-cert-update"
version = "0.1.0"
description = "Programatically updates Freebox's SSL certificates for custom domains."
authors = [
{name = "Artémis Michelot",email = "artemis.michelot@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"requests (>=2.32.5,<3.0.0)",
"cryptography (>=46.0.1,<47.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"