misc: Make the root project not a package
What changed, and why it matters
This commit changes Python packaging metadata to declare that the top-level directory is not itself an installable Python package. It adds two configuration lines telling Poetry and uv (Python build tools) not to treat the root project as a package. There is no code change and no apparent security relevance.
No security action required. Treat as routine build configuration maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds [tool.poetry] package-mode = false and confirms an existing [tool.uv] package = false setting in pyproject.toml. This prevents Poetry and uv from building/installing the repository root as a Python package. This is a build-tool configuration change with no runtime security implications visible in the diff.
Changed components
pyproject.tomlInspect captured patch +3 / −0
diff --git a/pyproject.toml b/pyproject.toml
index 518bfffc..0593078f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -36,6 +36,9 @@ dev = [
[project.optional-dependencies]
grpc = ["pyln-testing"]
+[tool.poetry]
+package-mode = false
+
[tool.uv]
package = false
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.