Metadata-Version: 2.1
Name: PyGL-Tetrix
Version: 0.0.1
Summary: One-day Tetris programming challenge using pyglet
Home-page: https://github.com/Woldstn/PyGL-Tetrix
Author: Zach Pierog
Author-email: woldstn@live.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Woldstn/PyGL-Tetrix/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# PyGL-Tetrix
A Tetris clone written using Pyglet.
This was done as a one-day project to practice pyglet and programming concepts. This was originally a one-file program, but is now a full python package.

### Installation instructions
To play, simply install the package using the command below in the command prompt or terminal.<br>
`pip install PyGL-Tetrix`<br>
Then, use the following command to run the package.<br>
`python -m pygl_tetrix`

### Controls
* Move piece left - Left Arrow (←)
* Move piece right - Right Arrow (→)
* Move piece down - Down Arrow (↓)
* Rotate piece clockwise - E
* Rotate piece counter-clockwise - Q
* Pause game - Space

Features
* Eight difficulty levels
* All regular tetrominos
* Rotation around proper points
* Score tracking

WIP
* Hold piece function
* Next piece display
* Increased score for multiple line clears
* Rotation "kicking"
* Option to restart after game over

