33 lines
544 B
TOML
33 lines
544 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",
|
|
]
|
|
|
|
[project.scripts]
|
|
gitea-mirror = "src.cli:main"
|
|
|
|
[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"
|