Initial commit

This commit is contained in:
2025-04-24 20:54:50 +02:00
commit 240d64023b
13 changed files with 811 additions and 0 deletions
Executable
+20
View File
@@ -0,0 +1,20 @@
#!/bin/bash
set -e
# Create virtual environment if it doesn't exist
if [ ! -d "venv" ]; then
python3 -m venv venv
fi
# Activate virtual environment
source venv/bin/activate
# Install dependencies
pip install -e .
# Run tests if they exist
if [ -d "tests" ]; then
python -m unittest discover tests
fi
echo "Build completed successfully!"