Files
gitea-mirror/pyproject.toml
T
alex fd88aabe46
Test and coverage / build (push) Failing after 4m23s
feat: Upgrade to uv and Python 3.12
2026-06-27 22:34:50 +03:00

30 lines
495 B
TOML

[project]
name = "gitea-mirror"
version = "0.1.0"
description = "Mirror Gitea repositories locally."
readme = "Readme.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.0",
"requests>=2.32",
]
[dependency-groups]
dev = [
"pre-commit>=4.0",
"pre-commit-hooks>=6.0",
"pytest>=8.0",
"pytest-cov>=7.0",
"ruff>=0.14",
]
[tool.ruff]
line-length = 80
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
quote-style = "double"