comparison setup.py @ 561:9afaa1969d6f

Level format 2 support * * * Allow for blank author * * * Fix thinko in write code
author Neil Muller <drnlmuller@gmail.com>
date Tue, 18 Oct 2011 11:41:28 +0200
parents 5da148acb36a
children 8526ede09363
comparison
equal deleted inserted replaced
560:a85993b00fd7 561:9afaa1969d6f
9 try: 9 try:
10 import py2exe # pyflakes:ignore 10 import py2exe # pyflakes:ignore
11 except ImportError: 11 except ImportError:
12 pass 12 pass
13 13
14 VERSION_STR = "0.1" 14 # This should probably be pulled from constants.py
15 VERSION_STR = "0.2"
15 16
16 setup( # Metadata 17 setup( # Metadata
17 name="mutable-mamba", 18 name="mutable-mamba",
18 version=VERSION_STR, 19 version=VERSION_STR,
19 description="Mutable Mamba: Snake game for PyWeek 13", 20 description="Mutable Mamba: Snake game for PyWeek 13",