2025-12-23 10:19:37 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "matomo-bootstrap"
|
|
|
|
|
version = "0.1.0"
|
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" }]
|
|
|
|
|
license = { text = "All rights reserved by Kevin Veen-Birkenbach" }
|
|
|
|
|
urls = { Homepage = "https://github.com/kevinveenbirkenbach/matomo-bootstrap" }
|
|
|
|
|
|
|
|
|
|
dependencies = []
|
|
|
|
|
|
2025-12-23 11:36:20 +01:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
e2e = [
|
|
|
|
|
"playwright>=1.40.0",
|
|
|
|
|
]
|
|
|
|
|
|
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"]
|