Restructuring project for python's setuptools

This commit is contained in:
Derek Higgins
2012-11-26 12:23:47 +00:00
parent c072b5c4ef
commit 29a82333a6
81 changed files with 184 additions and 107 deletions

11
packstack/version.py Normal file
View File

@@ -0,0 +1,11 @@
VERSION = ['2013', '2', '1']
FINAL=False
def version_string():
if FINAL:
return '.'.join(filter(None, VERSION))
else:
return '.'.join(filter(None, VERSION))+"dev"