Metadata-Version: 2.1
Name: game-of-life-M
Version: 0.0.2
Summary: Conway's game of life in python
Home-page: https://github.com/hogum/game-of-life
Author: mugoh
Author-email: mugoh.ks@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy

## game-of-life
[![Build Status](https://travis-ci.org/hogum/game-of-life.svg?branch=master)](https://travis-ci.org/hogum/game-of-life)
[![Coverage Status](https://coveralls.io/repos/github/hogum/game-of-life/badge.svg?branch=master)](https://coveralls.io/github/hogum/game-of-life?branch=master)

[Game of life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) implementation in the python standard library and numpy

#### Setup
##### 1. Install using setuptools
```
python3 setup.py install
```
##### 2. Install using pip
```
pip install game-of-life-MUGOH==0.0.1
```

#### Testing
Run
```
pytest
```


