First commit

Project created using poetry and some code is written
This commit is contained in:
2025-06-14 16:14:28 +02:00
commit 96e86d5c76
7 changed files with 221 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "unisync"
version = "0.1.0"
description = ""
authors = [
{name = "Paul Retourné",email = "paul.retourne@orange.fr"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pyaml (>=25.5.0,<26.0.0)",
"pyrallis (>=0.3.1,<0.4.0)"
]
[tool.poetry]
packages = [{include = "unisync", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"