A Starter Repository for the Rock Paper Scissors Exercise.
Create a virtual environment:
conda create -n rps-env python=3.8Activate the virtual environment:
conda activate rps-envInstall package dependencies (mainly for testing):
pip install -r requirements.txtRun the rock paper scissors game:
python game.pyRun tests:
pytest