From 1cf014fb169471e84f77fdd97b27e056e9cf9077 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Tue, 3 Jun 2025 14:15:39 +1000 Subject: [PATCH] packaging: Make termstr a proper package - It was a single module, and it wasn't working with uv. --- termstr/pyproject.toml | 2 ++ termstr/{termstr.py => termstr/__init__.py} | 0 2 files changed, 2 insertions(+) rename termstr/{termstr.py => termstr/__init__.py} (100%) diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index 93bed9b..1aa6937 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -1,3 +1,5 @@ +tool.uv.package = true + [project] name = "termstr" version = "v2024.12.28" diff --git a/termstr/termstr.py b/termstr/termstr/__init__.py similarity index 100% rename from termstr/termstr.py rename to termstr/termstr/__init__.py