cspresso/pyproject.toml
Miguel Jacq a4a15fba57
All checks were successful
CI / test (push) Successful in 2m28s
Lint / test (push) Successful in 28s
Trivy / test (push) Successful in 22s
Add URL to pyproject
2026-01-02 14:21:40 +11:00

30 lines
776 B
TOML

[tool.poetry]
name = "cspresso"
version = "0.1.2"
description = "Crawl a website with a headless browser and generate a draft Content-Security-Policy (CSP)."
authors = ["Miguel Jacq <mig@mig5.net>"]
readme = "README.md"
packages = [{ include = "cspresso", from = "src" }]
license = "GPL-3.0-or-later"
homepage = "https://cspresso.cafe"
repository = "https://git.mig5.net/mig5/cspresso"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
playwright = "^1.50.0"
[tool.poetry.scripts]
cspresso = "cspresso.crawl:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyproject-appimage]
script = "cspresso"
output = "CSPresso.AppImage"
[tool.poetry.dev-dependencies]
pytest = "^8"
pytest-cov = "^5"
pyproject-appimage = "^4.2"