Metadata-Version: 2.1
Name: simple-game-of-life
Version: 0.0.1
Summary: UNKNOWN
Home-page: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Game Of Life

Simple way to play "game of life" using python

## Installation

Run the following to install:
``` python pip install game_of_life ```

## Usage

```python
from simple_game_of_life import GameOfLife
game = GameOfLife(50) 
game.start_animation()
```

