Metadata-Version: 2.4
Name: snake-game-cli
Version: 0.2.2
Summary: Play snake game in your terminal.
Project-URL: Homepage, https://github.com/wang-hz/snake-game-cli
Author-email: "Wang H.Z." <imwanghz@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Dist: windows-curses; sys_platform == 'win32'
Description-Content-Type: text/markdown

# snake-game-cli

Play snake game in your terminal.

![demo](demo.svg)

## Installation

```shell
pip install snake-game-cli
```

## Usage

```shell
play-snake
```

## Controls

| Key | Action |
|-----|--------|
| `↑` / `W` | Move up |
| `↓` / `S` | Move down |
| `←` / `A` | Move left |
| `→` / `D` | Move right |
| `P` | Pause / Resume |
| `Q` | Quit |

## Features

- Snake speeds up as your score increases
- Pressing a direction key triggers an immediate move
- Terminal resize is handled gracefully
