fix(pyproject): mark as non-package project (package = false)

Removes hatchling build-system — this is a script project, not a
Python library, so uv should only manage the virtualenv dependencies.
This commit is contained in:
2026-06-02 09:58:56 +03:00
parent 97339fc79c
commit 8146f0c135
+2 -3
View File
@@ -8,6 +8,5 @@ dependencies = [
"httpx>=0.27", "httpx>=0.27",
] ]
[build-system] [tool.uv]
requires = ["hatchling"] package = false
build-backend = "hatchling.build"