diff --git a/.gitignore b/.gitignore index b9cb87b..8f96ebd 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,4 @@ target/ # Mac gorp .DS_Store +contrib/images/* diff --git a/GameOfLife/__init__.py b/GameOfLife/__init__.py index 2eda4f2..2999cee 100644 --- a/GameOfLife/__init__.py +++ b/GameOfLife/__init__.py @@ -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 diff --git a/Makefile b/Makefile index 882c51e..446d29e 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ TARGET= GameOfLife MAJOR=0 MINOR=1 -POINT=0 +POINT=1 VERSION= ${MAJOR}.${MINOR}.${POINT} QVERSION= "'${VERSION}'" VERSION_FILE= VERSION diff --git a/setup.py b/setup.py index 10bf184..aea3d96 100644 --- a/setup.py +++ b/setup.py @@ -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: @@ -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 = {},