Skip to content

Commit a702ef3

Browse files
committed
Preparing the package for publication
1 parent b8c10fb commit a702ef3

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.venv/
2+
__pycache__/
3+
*.pyc
4+
dist/
5+
build/
6+
*.egg-info/

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# Install dependencies
3+
install:
4+
uv sync
5+
6+
# Run the brain-games application
7+
brain-games:
8+
uv run brain-games
9+
10+
# Build the package
11+
build:
12+
uv build
13+
14+
# Install the built package system-wide
15+
package-install:
16+
uv tool install dist/*.whl

0 commit comments

Comments
 (0)