Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JnyJny committed Oct 31, 2015
1 parent 1d18cfe commit 1018c94
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@ target/

# Mac gorp
.DS_Store
contrib/images/*
2 changes: 1 addition & 1 deletion GameOfLife/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__author__ = '\n'.join(["Erik O'Shaughnessy",
'erik.oshaughnessy@gmail.com',
'https://github.com/JnyJny/GameOfLife'])
__version__ = "0.1.0"
__version__ = "0.1.1"

from .cell import Cell as Cell
from .world import OptimizedWorld as World
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ TARGET= GameOfLife

MAJOR=0
MINOR=1
POINT=0
POINT=1
VERSION= ${MAJOR}.${MINOR}.${POINT}
QVERSION= "'${VERSION}'"
VERSION_FILE= VERSION
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
$ cd GameOfLife
$ sudo python3 setup.py install
Also included in the package is CGameOfLife, a python script that
displays the simulation in a terminal window using curses.
Also included in the package are:
Old skool is best skool.
CGameOfLife: displays the simulation in a terminal window using curses.
PGameOfLife: displays the simulation in a PyGame window with pretty pictures.
'''

try:
Expand Down Expand Up @@ -61,7 +61,7 @@
keywords = 'conway game life cellular automata simulation',
packages = find_packages(exclude=['contrib']),
test_suite = 'GameOfLife.tests',
scripts = ['contrib/CGameOfLife.py'],
scripts = ['contrib/CGameOfLife.py','contrib/PGameOfLife.py'],
install_requires = [],
extras_require = {},
package_data = {},
Expand Down

0 comments on commit 1018c94

Please sign in to comment.