Copyright 2024 The Authors of Coral
Distributed under GNU General Public License vr. 3 or later.
Sucury is an implementation exercise based on KobraPy open-source coding exercise.
The software is a simple version of the classic 1980s arcade snake game, written in Python and implemented as an extension of the original KobraPy codebase. The project was developed in 2023 by Computer Science students taking the Open Source Systems undergraduate course at ICMC, University of São Paulo.
Please refer to the file docs/manual.md.
To contribute, please refer to docs/CONTRIBUTING.md.
After cloning the repository, you need to install pygame, the project dependency, this can be accomplished with either your package manager's install command for a global install, if you are using an arch based distros it would be:
sudo pacman -S python-pygame
Or with pip, if you are using virtual environments and want a local installation:
pip install pygame