From 50914eb70db2495ebff36aa516664540471f7969 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Thu, 22 Jan 2026 20:30:24 -0700 Subject: [PATCH] initialized a uv project --- .python-version | 1 + README.md | 3 +++ main.py | 6 ++++++ pyproject.toml | 7 +++++++ uv.lock | 8 ++++++++ 5 files changed, 25 insertions(+) create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py 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..526b3c5 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Resume builder + +Resume(s) are written in [markdown](https://www.markdownguide.org/) and stored in the markdown/. When the project is pushed it outputs pdf in public/ and publishes an html available at www.ewpt3ch.dev/resume. diff --git a/main.py b/main.py new file mode 100644 index 0000000..06d58d4 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from resume!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..70d2884 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "resume" +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..3c3de2b --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.14" + +[[package]] +name = "resume" +version = "0.1.0" +source = { virtual = "." }