33 lines
584 B
TOML
33 lines
584 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gitea-dashboard"
|
|
version = "1.0.0"
|
|
description = "CLI dashboard for Gitea repos status"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"requests>=2.31",
|
|
"rich>=13.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"ruff>=0.4",
|
|
]
|
|
|
|
[project.scripts]
|
|
gitea-dashboard = "gitea_dashboard.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
src = ["src", "tests"]
|
|
line-length = 100
|