mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-28 15:38:11 +08:00
10 lines
168 B
Python
10 lines
168 B
Python
BANNER = """
|
|
Zipline {version}
|
|
Released under BSD3
|
|
""".strip()
|
|
|
|
VERSION = ( 0, 0, 1, 'dev' )
|
|
|
|
def pretty_version():
|
|
return BANNER.format(version='.'.join(VERSION))
|