Files
unisync/pyproject.toml
furtest f2b676043c Merge branch 'linter' into dev
Add pylint to the project and fix some of its reports.
2026-01-30 15:31:33 +01:00

32 lines
565 B
TOML

[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 = [
]
[project.scripts]
unisync = "unisync.main:main"
[tool.poetry]
packages = [{include = "unisync", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
docs = [
"sphinx (>=9.1.0,<10.0.0)",
"sphinx-rtd-theme (>=3.0.2,<4.0.0)",
]
dev = [
"pylint (>=4.0.4,<5.0.0)"
]