Files
test/install.sh
lumin 07fe457a90 feat: add devcontainer configuration and installation script
Add a devcontainer configuration to streamline the development 
environment setup. Introduce an `install.sh` script to install 
the project in editable mode. Update the Dockerfile to use 
the `python:3.13-slim-bullseye` base image and install 
dependencies using `apt-get` for better compatibility.
2024-12-17 17:04:31 +09:00

8 lines
149 B
Bash

#!/bin/sh
# Install the current project in editable mode
echo "Installing the project in editable mode..."
pip install -e .
echo "Setup complete!"