2026-08-26 12:12:33 +02:00
|
|
|
[project]
|
|
|
|
|
name = "soapbox"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Liten statisk blogg med mobilvennlig editor, innhold i git"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.12"
|
2026-08-26 13:13:25 +02:00
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
|
license-files = ["LICENSE"]
|
2026-08-26 12:12:33 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"flask>=3.1",
|
|
|
|
|
"linkify-it-py>=2.1.1",
|
|
|
|
|
"markdown-it-py>=3.0",
|
|
|
|
|
"mdit-py-plugins>=0.4",
|
|
|
|
|
"pillow>=11.0",
|
|
|
|
|
"waitress>=3.0",
|
|
|
|
|
]
|
|
|
|
|
|
2026-08-26 13:13:25 +02:00
|
|
|
[project.urls]
|
|
|
|
|
Repository = "https://kode.naiv.no/olemd/soapbox"
|
|
|
|
|
|
2026-08-26 12:12:33 +02:00
|
|
|
[project.scripts]
|
|
|
|
|
soapbox = "soapbox.cli:main"
|
|
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = ["pytest>=8", "ruff>=0.8"]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["soapbox"]
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|