initialized a uv project

This commit is contained in:
2026-01-22 20:30:24 -07:00
parent 9637fc6545
commit 50914eb70d
5 changed files with 25 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
3.14
+3
View File
@@ -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.
+6
View File
@@ -0,0 +1,6 @@
def main():
print("Hello from resume!")
if __name__ == "__main__":
main()
+7
View File
@@ -0,0 +1,7 @@
[project]
name = "resume"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
Generated
+8
View File
@@ -0,0 +1,8 @@
version = 1
revision = 3
requires-python = ">=3.14"
[[package]]
name = "resume"
version = "0.1.0"
source = { virtual = "." }