From a425db2c3a1fda4a1a09bbd149c1486d44cb64ba Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Thu, 19 Dec 2024 11:31:53 +0100 Subject: [PATCH] dist scripts --- bin/upgrade-db | 0 pyproject.toml | 16 +++++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) mode change 100644 => 100755 bin/upgrade-db diff --git a/bin/upgrade-db b/bin/upgrade-db old mode 100644 new mode 100755 diff --git a/pyproject.toml b/pyproject.toml index 681c903..008d438 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,23 @@ requires = ["hatchling"] build-backend = "hatchling.build" +[tool.hatch.build.targets.sdist.force-include] +"bin/htmlalyzer.py" = "logpyle/htmlalyzer.py" +"bin/logtool.py" = "logpyle/logtool.py" +"bin/runalyzer.py" = "logpyle/runalyzer.py" +"bin/runalyzer-gather.py" = "logpyle/runalyzer-gather.py" +"bin/upgrade-db.py" = "logpyle/upgrade-db.py" + +[tool.hatch.build.targets.wheel.force-include] +"bin/htmlalyzer.py" = "logpyle/htmlalyzer.py" +"bin/logtool.py" = "logpyle/logtool.py" +"bin/runalyzer.py" = "logpyle/runalyzer.py" +"bin/runalyzer-gather.py" = "logpyle/runalyzer-gather.py" +"bin/upgrade-db.py" = "logpyle/upgrade-db.py" + [project] name = "logpyle" -version = "2023.5" +version = "2024.0" authors = [ { name = "Andreas Kloeckner", email = "inform@tiker.net" }, ]