# -*- coding: utf8 -*-
# $Id: __init__.py 568 2007-05-01 18:02:20Z ahatzis $
# pyswarm - Model-driven development of Python applications
# -------------------------------------------------------------------------
#
# Copyright (C) 2006-2007 Free Software Foundation Europe e.V.
#
# The main author of pyswarm is Anastasios Hatzis, though contributions
# are welcome from others. An author list can be found in the file AUTHORS.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# The licensor of pyswarm is the Free Software Foundation Europe
# (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zrich,
# Switzerland, email:ftf@fsfeurope.org.
#
# -------------------------------------------------------------------------
# http://pyswarm.sourceforge.net/
# =========================================================================
"""
TODO:
"""
MAJOR_VERSION = 0
MINOR_VERSION = 6
MICRO_VERSION = 2
LEVEL = u'dev'
SERIAL_NUMBER = 0 # e.g. for alpha-1, beta-3.
# for all versions prior to 1.0.0-alpha1 (then remove and use instead the alternative)
VERSION_STRING = u'' + unicode(MAJOR_VERSION) + '.' + unicode(MINOR_VERSION) + '.' + unicode(MICRO_VERSION) + '-' + LEVEL
__version__ = MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION, LEVEL
# for 1.0.0-alpha1 and later:
#VERSION_STRING = u'' + unicode(MAJOR_VERSION) + '.' + unicode(MINOR_VERSION) + '.' + unicode(MICRO_VERSION) + ' (' + LEVEL + '-' + unicode(SERIAL_NUMBER) + ')'
#__version__ = MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION, LEVEL, SERIAL_NUMBER
COPYNOTICE = u"""Copyright (C) 2006-2007 Free Software Foundation Europe e.V."""
__copyright__ = u"""
PetStore - Sample Web-UI for pyswarm & mod_python
""" + COPYNOTICE + """
http://pyswarm.sourceforge.net/
"""
__all__ = ['webapp']
|