Metadata-Version: 2.1
Name: sneak-game
Version: 0.2.0
Summary: Terminal snake in Python
Home-page: https://github.com/bluecap-se/sneak
Author: bluecap-se
Author-email: hello@bluecap.se
License: MIT
Keywords: sneak,game,snake
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Games/Entertainment :: Arcade
Description-Content-Type: text/markdown
License-File: LICENSE

# Sneak Game

[![PyPI](https://img.shields.io/pypi/v/sneak-game.svg)](https://pypi.python.org/pypi/sneak-game)
![Status](https://img.shields.io/badge/status-stable-brightgreen.svg)
![Python Version](https://img.shields.io/badge/python-3.10-blue.svg)
![Platform](https://img.shields.io/badge/platform-win%20%7C%20lin%20%7C%20osx-lightgrey.svg)
![Black](https://img.shields.io/badge/code%20style-black-000000.svg)
![License](https://img.shields.io/badge/license-MIT-blue.svg)

Snake game in the terminal.

![Game screenshot](https://raw.githubusercontent.com/bluecap-se/sneak/master/screenshot.png)

## Install

### Using a package manager

```bash
$ pip install sneak-game
```

### From source

This project relies on [Pipenv](https://docs.pipenv.org/), ensure that it is installed with `pip install pipenv` first.

```bash
$ git clone git@github.com:bluecap-se/sneak.git
$ cd sneak
$ pipenv install
$ pipenv shell
$ pipenv install -e .
```

## Usage

```bash
$ sneak -h

Sneak: A terminal snake game

Usage: sneak [options]

Options:
  -s SIZE, --size=SIZE  Game size (s | m | l)
  -h, --help            Show this help message and exit
  -v, --version         Show version and exit
```

## License

Published under [MIT License](https://github.com/bluecap-se/sneak/blob/master/LICENSE).

## Thanks to

This project was inspired by [python-console-snake](https://github.com/tancredi/python-console-snake).
