Metadata-Version: 2.1
Name: game-of-life-nodeps
Version: 0.0.2
Summary: Game of Life with only Python builtin libraries
Home-page: https://github.com/johnliu55tw/game-of-life
Author: John Liu
Author-email: johnliu55tw@gmail.com
License: UNKNOWN
Keywords: game-of-life tk tkinter simple
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Conway's Game of Life

[![Build Status](https://travis-ci.com/johnliu55tw/game-of-life.svg?branch=master)](https://travis-ci.com/johnliu55tw/game-of-life)

Just a simple project implements the famous
[Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)
with nothing but Python's builtin libraries. The interface is inspired
by [this website](https://bitstorm.org/gameoflife/). This is also a practice
of designing a GUI application that follows the MVP architecture.

## Requirements

* Python3 (with **Tk** configured)

## Install

```
$ pip install game-of-life-nodeps
```

## Run

```
$ game-of-life
```

Or

```
$ python3 -m game_of_life
```

## Test

```
$ python3 -m unittest
```


