cspresso/pyproject.toml
Miguel Jacq 052187d308
All checks were successful
Lint / test (push) Successful in 29s
Trivy / test (push) Successful in 23s
CI / test (push) Successful in 2m30s
0.1.1
2026-01-02 10:56:05 +11:00

29 lines
741 B
TOML

[tool.poetry]
name = "cspresso"
version = "0.1.1"
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"
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"