aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2026-05-18 19:37:35 +0300
committerJan Tuomi <jan@jantuomi.fi>2026-05-18 19:37:35 +0300
commit415f77f05ae648bb2a2640971f3268e1fae59b06 (patch)
treea8e4dbcc924a8b733699a2d155a4e3870744d4a2
parent6fe7c84a588c4f32a358043c71828b708f018e76 (diff)
0.3.2: Specify build-system
-rw-r--r--pyproject.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 2bebbe8..a79322b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,9 +1,9 @@
[project]
name = "pylogsentinel"
-version = "0.3.1"
+version = "0.3.2"
description = "Lightweight cron-friendly log monitoring utility with regex rules and per-rule shell actions"
readme = "README.md"
-requires-python = ">=3.9"
+requires-python = ">=3.11"
dependencies = []
authors = [
{ name = "Jan Tuomi", email = "jan@jantuomi.fi" }
@@ -15,3 +15,7 @@ license = {text = "MIT"}
Homepage = "https://github.com/jantuomi/pylogsentinel"
Repository = "https://github.com/jantuomi/pylogsentinel.git"
Issues = "https://github.com/jantuomi/pylogsentinel/issues"
+
+[build-system]
+requires = ["setuptools>=61", "wheel"]
+build-backend = "setuptools.build_meta"