Metadata-Version: 2.1
Name: game-of-life-uc
Version: 0.1.1
Summary: 
Author: Pedro Juan Royo
Author-email: pedro.juan.royo@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# Game of Life

Conway's Game of life in python

* This program has been coded to test how the **curses** python module works.

Run and see the Game play updating every 0.1 seconds. Press <**q**> to exit, or <**CTRL+C**> to kill the program. 

In edit mode, press <**SPACE**> to toggle the cell state. Press <**q**> to start resume the game.

## Installation

* `pipx install game-of-life-uc`
* Run with `game-of-life`

### Dependencies

* curses
* time
* random
* copy
* argparse

## To-Do

* Add a How-To window (curses.newwin())
