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