Skip to content

Commit 1018c94

Browse files
committed
0.1.1
1 parent 1d18cfe commit 1018c94

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ target/
6565

6666
# Mac gorp
6767
.DS_Store
68+
contrib/images/*

GameOfLife/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__author__ = '\n'.join(["Erik O'Shaughnessy",
1010
1111
'https://github.com/JnyJny/GameOfLife'])
12-
__version__ = "0.1.0"
12+
__version__ = "0.1.1"
1313

1414
from .cell import Cell as Cell
1515
from .world import OptimizedWorld as World

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ TARGET= GameOfLife
22

33
MAJOR=0
44
MINOR=1
5-
POINT=0
5+
POINT=1
66
VERSION= ${MAJOR}.${MINOR}.${POINT}
77
QVERSION= "'${VERSION}'"
88
VERSION_FILE= VERSION

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
$ cd GameOfLife
2525
$ sudo python3 setup.py install
2626
27-
Also included in the package is CGameOfLife, a python script that
28-
displays the simulation in a terminal window using curses.
27+
Also included in the package are:
2928
30-
Old skool is best skool.
29+
CGameOfLife: displays the simulation in a terminal window using curses.
30+
PGameOfLife: displays the simulation in a PyGame window with pretty pictures.
3131
'''
3232

3333
try:
@@ -61,7 +61,7 @@
6161
keywords = 'conway game life cellular automata simulation',
6262
packages = find_packages(exclude=['contrib']),
6363
test_suite = 'GameOfLife.tests',
64-
scripts = ['contrib/CGameOfLife.py'],
64+
scripts = ['contrib/CGameOfLife.py','contrib/PGameOfLife.py'],
6565
install_requires = [],
6666
extras_require = {},
6767
package_data = {},

0 commit comments

Comments
 (0)