Files
catalyst/zipline/version.py
T
Eddie Hebert 77af1ca632 Applies PEP-8 and pyflakes style to tests and zipline.
Mostly whitespace, line width and other spacing changes.
Also, removes use of deprecated has_key in favor of `in`

Going forward new patches should pass running `flake8` before
submission.
2012-10-05 12:14:09 -04:00

11 lines
167 B
Python

BANNER = """
Zipline {version}
Released under BSD3
""".strip()
VERSION = (0, 0, 1, 'dev')
def pretty_version():
return BANNER.format(version='.'.join(VERSION))