From 9116ee2d25e9094e64e02e39114f40b54282602c Mon Sep 17 00:00:00 2001 From: cswimr Date: Mon, 13 Jan 2025 06:07:23 -0600 Subject: [PATCH] add pyproject.toml and uv.lock templates to the template --- templates/python/pyproject.toml | 7 +++++++ templates/python/uv.lock | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 templates/python/pyproject.toml create mode 100644 templates/python/uv.lock diff --git a/templates/python/pyproject.toml b/templates/python/pyproject.toml new file mode 100644 index 0000000..32770b7 --- /dev/null +++ b/templates/python/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "template" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [] diff --git a/templates/python/uv.lock b/templates/python/uv.lock new file mode 100644 index 0000000..f3e9318 --- /dev/null +++ b/templates/python/uv.lock @@ -0,0 +1,2 @@ +version = 1 +requires-python = ">=3.11"