From a671da8ecf8674b491027643cf6d0ee7eea22a98 Mon Sep 17 00:00:00 2001 From: Nikhil Vengal Date: Tue, 2 Dec 2025 20:12:37 -0800 Subject: [PATCH] Init with uv --- .python-version | 1 + README.md | 0 main.py | 6 ++++++ mise.toml | 5 +++++ pyproject.toml | 7 +++++++ uv.lock | 8 ++++++++ 6 files changed, 27 insertions(+) create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 mise.toml create mode 100644 pyproject.toml create mode 100644 uv.lock diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..465e06c --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from advent-of-code-2025!") + + +if __name__ == "__main__": + main() diff --git a/mise.toml b/mise.toml new file mode 100644 index 0000000..64e7f51 --- /dev/null +++ b/mise.toml @@ -0,0 +1,5 @@ +[tools] +uv = "latest" + +[settings.python] +uv_venv_auto = true diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..63bb816 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "advent-of-code-2025" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.14" +dependencies = [] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..21794cf --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.14" + +[[package]] +name = "advent-of-code-2025" +version = "0.1.0" +source = { virtual = "." }