Files
matomo-bootstrap/pyproject.toml

33 lines
799 B
TOML
Raw Normal View History

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-23 22:07:11 +01:00
version = "1.1.0"
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 = "MIT" }
2025-12-23 10:19:37 +01:00
urls = { Homepage = "https://github.com/kevinveenbirkenbach/matomo-bootstrap" }
dependencies = ["playwright>=1.46.0,<2"]
# Provides a stable CLI name for Nix + pip installs:
[project.scripts]
matomo-bootstrap = "matomo_bootstrap.__main__:main"
[project.optional-dependencies]
e2e = []
dev = [
"ruff",
]
2025-12-23 10:19:37 +01:00
[tool.setuptools]
package-dir = { "" = "src" }
2025-12-23 10:19:37 +01:00
[tool.setuptools.packages.find]
where = ["src"]