Skip to content
This repository was archived by the owner on Jun 25, 2026. It is now read-only.

Commit 0c03e0f

Browse files
committed
init: uv project for gabriel's bootstrap
1 parent 4048682 commit 0c03e0f

4 files changed

Lines changed: 18 additions & 0 deletions

File tree

bootstrap/gabriel/.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

bootstrap/gabriel/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Bootstrap - Gabriel
2+
3+
This folder holds a simple UV project for my attempt on the project's bootstrap exercices.
4+

bootstrap/gabriel/main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from gabriel!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

bootstrap/gabriel/pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[project]
2+
name = "gabriel"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.13"
7+
dependencies = []

0 commit comments

Comments
 (0)