Metadata-Version: 2.1
Name: tetris-py
Version: 0.0.3
Summary: A Tetris game written in Python.
Author-email: Toma Popov <toma98@hotmail.co.uk>
Project-URL: Homepage, https://github.com/tomapopov/tetris-game
Project-URL: Issues, https://github.com/tomapopov/tetris-game/issues
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygame

# Tetris Game

[![Build](https://github.com/tomapopov/tetris-game/actions/workflows/python-build.yml/badge.svg)](https://github.com/tomapopov/tetris-game/actions/workflows/python-build.yml)

A Tetris game written in Python. 

This has 2 possible interfaces:
- pygame GUI (the default/main version)
- command-line (minimal/basic version with reduced functionality)

## Install

### pip
The preferred way to install Tetris is via pip:

```sh
pip install tetris-game
```

To play, you then simply run:
```
tetris-game
```

For the CLI version, use `tetris-game-cli` instead.

### source
An alternative way is to simply clone the repo and use the `./run` script:

```
git clone git@github.com:tomapopov/tetris-game.git
cd tetris-game
./run
```

For the CLI version, use `./run_cli` instead.


## Dependencies
The GUI version uses the `pygame` package, which is listed in `requirements.txt`.

