|
# Copyright (C) 2004-2005 Paul Cochrane |
|
|
# |
|
|
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
|
|
|
|
# $Id: __init__.py,v 1.10 2005/02/24 04:04:38 paultcochrane Exp $ |
|
|
|
|
|
## @file __init__.py |
|
|
|
|
1 |
""" |
""" |
2 |
Initialisation of the pyvisi base package |
Initialisation of the pyvisi base package |
3 |
|
|
4 |
|
@var __author__: name of author |
5 |
|
@var __license__: licence agreement |
6 |
|
@var __copyright__: copyrights |
7 |
|
@var __url__: url entry point on documentation |
8 |
|
@var __version__: version |
9 |
|
@var __date__: date of the version |
10 |
""" |
""" |
11 |
|
|
12 |
__author__ = 'Paul Cochrane' |
__copyright__=""" Copyright (c) 2006 by ACcESS MNRF |
13 |
|
http://www.access.edu.au |
14 |
|
Primary Business: Queensland, Australia""" |
15 |
|
__license__="""Licensed under the Open Software License version 3.0 |
16 |
|
http://www.opensource.org/licenses/osl-3.0.php""" |
17 |
|
__author__="Paul Cochrane" |
18 |
|
__url__="http://www.iservo.edu.au/esys" |
19 |
|
__version__="$Revision$" |
20 |
|
__date__="$Date$" |
21 |
|
|
22 |
from item import Item |
from item import Item |
23 |
from renderer import Renderer |
from renderer import Renderer |