We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1768b4e commit 5405daeCopy full SHA for 5405dae
1 file changed
{{cookiecutter.project_name}}/noxfile.py
100644
100755
@@ -1,3 +1,11 @@
1
+#!/usr/bin/env -S uv run --script
2
+
3
+# /// script
4
+# dependencies = ["nox>=2025.2.9"]
5
+# ///
6
7
+"""Nox runner."""
8
9
from __future__ import annotations
10
11
{% if cookiecutter.docs == 'sphinx' -%}
@@ -133,3 +141,7 @@ def build(session: nox.Session) -> None:
133
141
134
142
session.install("build")
135
143
session.run("python", "-m", "build")
144
145
146
+if __name__ == "__main__":
147
+ nox.main()
0 commit comments