[PythonReports-checkins] PythonReports/PythonReports version.py, NONE, 1.1
Brought to you by:
a1s
From: alexander s. <a1...@us...> - 2006-11-03 10:28:36
|
Update of /cvsroot/pythonreports/PythonReports/PythonReports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6254 Added Files: version.py Log Message: PythonReports package version declaration --- NEW FILE: version.py --- """PythonReports package version declaration""" """History: 03-nov-2006 [als] created """ # Note: __date__ is a string because all modules have __date_ as a string. # wouldn't datetime.date object be better? __version__ = "0.1.0" __date__ = "2006-11-03" __all__ = ["__version__", "__date__"] # vim: set et sts=4 sw=4 : |