Metadata-Version: 2.4
Name: snakerun
Version: 0.0.1
Summary: A Python based CLI game for playing classical snake game
Author: Ishan Bhat
Author-email: ishan2003bhat@gmail.com
Keywords: snake game python cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: windows-curses; platform_system == "Windows"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: twine; extra == "dev"
Provides-Extra: all
Requires-Dist: pytest; extra == "all"
Requires-Dist: build; extra == "all"
Requires-Dist: pre-commit; extra == "all"
Requires-Dist: ruff; extra == "all"
Requires-Dist: twine; extra == "all"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Snakerun <!-- omit in toc -->

A classic Snake game implemented in **Python** and played via cli.

[![PyPI version](https://img.shields.io/pypi/v/snakerun.svg?color=blue)](https://pypi.org/project/snakerun/)
[![Python Versions](https://img.shields.io/pypi/pyversions/snakerun.svg)](https://pypi.org/project/snakerun/)
[![License](https://img.shields.io/github/license/bhatishan2003/snakerun)](LICENSE)
[![Python application](https://github.com/bhatishan2003/snakerun/actions/workflows/python-app.yml/badge.svg)](https://github.com/bhatishan2003/snakerun/actions/workflows/python-app.yml)
[![Coverage](https://img.shields.io/codecov/c/github/bhatishan2003/snakerun)](https://codecov.io/gh/bhatishan2003/snakerun)

## Table of Contents <!-- omit in toc -->

- [Installation](#installation)
- [Usage](#usage)

---

## Installation

-   From PyPi

    ```bash
    pip install snakerun
    ```

-   From Source :

    ```bash
    git clone https://github.com/bhatishan2003/snakerun.git
    cd snakerun
    pip install .
    ```

## Usage

Run the following command in the terminal to play the game.

```bash
snakerun
```

![Snake Game Demo](assets/demo.gif)
