2025-12-23 10:19:37 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "matomo-bootstrap"
|
2025-12-24 08:39:59 +01:00
|
|
|
version = "1.1.1"
|
2025-12-23 11:36:20 +01:00
|
|
|
description = "Headless bootstrap tooling for Matomo (installation + API token provisioning)"
|
2025-12-23 10:19:37 +01:00
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
authors = [{ name = "Kevin Veen-Birkenbach", email = "kevin@veen.world" }]
|
2025-12-23 12:58:48 +01:00
|
|
|
license = { text = "MIT" }
|
2025-12-23 10:19:37 +01:00
|
|
|
urls = { Homepage = "https://github.com/kevinveenbirkenbach/matomo-bootstrap" }
|
|
|
|
|
|
2025-12-23 21:54:16 +01:00
|
|
|
dependencies = ["playwright>=1.46.0,<2"]
|
2025-12-23 11:36:20 +01:00
|
|
|
|
2025-12-23 12:58:48 +01:00
|
|
|
# Provides a stable CLI name for Nix + pip installs:
|
|
|
|
|
[project.scripts]
|
|
|
|
|
matomo-bootstrap = "matomo_bootstrap.__main__:main"
|
|
|
|
|
|
2025-12-23 12:21:13 +01:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
e2e = []
|
|
|
|
|
|
2025-12-23 12:58:48 +01:00
|
|
|
dev = [
|
|
|
|
|
"ruff",
|
|
|
|
|
]
|
|
|
|
|
|
2025-12-23 10:19:37 +01:00
|
|
|
[tool.setuptools]
|
2025-12-23 11:36:20 +01:00
|
|
|
package-dir = { "" = "src" }
|
2025-12-23 10:19:37 +01:00
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|