From 8146f0c13573a3b6881ea330393878efc34c3a9f Mon Sep 17 00:00:00 2001 From: Andrey Limasov Date: Tue, 2 Jun 2026 09:58:56 +0300 Subject: [PATCH] fix(pyproject): mark as non-package project (package = false) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes hatchling build-system — this is a script project, not a Python library, so uv should only manage the virtualenv dependencies. --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 713e4f0..b11aecd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,5 @@ dependencies = [ "httpx>=0.27", ] -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" +[tool.uv] +package = false