Metadata-Version: 2.1
Name: snakeySnake
Version: 0.1.0
Summary: A pygame implementation of the classic snake game
Author-email: Izzy Parfitt <isobelleparfitt@gmail.com>
Project-URL: Homepage, https://github.com/iparfitt/snakeySnake
Project-URL: Bug Tracker, https://github.com/iparfitt/snakeySnake/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# snakeySnake

Version: 0.1.0

## Structure:
    .
    ├── build                   # Compiled files (alternatively `dist`)
    ├── snakeySnake             # Source files
        ├── data                # Data used in the application
            ├── apple.png       # The image used for apples
            ├── scoreboard.txt  # Local record of scores
        ├── __init__.py
        ├── __main__.py         # Main program file
        ├── game.py
        ├── scoreboard.py
        ├── snake.py
    ├── tests                   # Automated tests
    ├── LICENSE
    └── README.md

## Requirements
python = ">=3.7"
pygame==2.1.3.dev8

## To install
Run `pip3 install snakeySnake` from command line

## To run:
- Run `snake-cli` from the command line
- Move using "ASWD" or arrow keys
- Collect points by collecting apples and survivng 
- Game over if the snake runs into itself or any walls

## Previous Versions
- v0.0.1: Classic snake game with keyboard controls and local scoreboard
- v0.0.2: Added tutorial and homescreen, pulled enums into separate file
- v0.0.2b: Patch release, fixed bugs with scoreboard not update or writing to file
- v0.1.0: Added capability to design snake and store snake design locally, refactored screens into classes to enable easier future development. Also moved shared object to context object
