Skip to content

Commit c5b6068

Browse files
committed
add second step
1 parent 4fa043e commit c5b6068

File tree

12 files changed

+52
-0
lines changed

12 files changed

+52
-0
lines changed

.gitignore

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

.python-version

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

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
install:
2+
uv sync
3+
4+
brain-games:
5+
uv run brain-games
6+
7+
build:
8+
uv build
9+
10+
package-install:
11+
uv tool install dist/*.whl

brain_games/__init__.py

Whitespace-only changes.
158 Bytes
Binary file not shown.

brain_games/scripts/__init__.py

Whitespace-only changes.
166 Bytes
Binary file not shown.
485 Bytes
Binary file not shown.

brain_games/scripts/brain_games.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env python3
2+
3+
4+
def main():
5+
print('Welcome to the Brain Games!')
6+
7+
8+
if __name__ == '__main__':
9+
main()

hello.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 python-project-49!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

0 commit comments

Comments
 (0)