Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions geraldo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@
- tests - a package with automated doc tests.
"""

from version import VERSION, get_version
from geraldo.version import VERSION, get_version

__author__ = 'Marinho Brandao'
__license__ = 'GNU Lesser General Public License (LGPL)'
__url__ = 'http://geraldo.sourceforge.net/'
__version__ = get_version()

from base import Report, ReportBand, DetailBand, TableBand, ReportGroup,\
from geraldo.base import Report, ReportBand, DetailBand, TableBand, ReportGroup,\
SubReport, landscape, GeraldoObject, ManyElements, CROSS_COLS
from widgets import Label, ObjectValue, SystemField
from widgets import FIELD_ACTION_VALUE, FIELD_ACTION_COUNT, FIELD_ACTION_AVG,\
from geraldo.widgets import Label, ObjectValue, SystemField
from geraldo.widgets import FIELD_ACTION_VALUE, FIELD_ACTION_COUNT, FIELD_ACTION_AVG,\
FIELD_ACTION_MIN, FIELD_ACTION_MAX, FIELD_ACTION_SUM,\
FIELD_ACTION_DISTINCT_COUNT, BAND_WIDTH
from graphics import RoundRect, Rect, Line, Circle, Arc, Ellipse, Image
from exceptions import EmptyQueryset, ObjectNotFound, ManyObjectsFound, AbortEvent
from cross_reference import CrossReferenceMatrix
from geraldo.graphics import RoundRect, Rect, Line, Circle, Arc, Ellipse, Image
from geraldo.exceptions import EmptyQueryset, ObjectNotFound, ManyObjectsFound, AbortEvent
from geraldo.cross_reference import CrossReferenceMatrix