Show
Ignore:
Timestamp:
09/10/08 09:20:11 (5 years ago)
Author:
Nicolas ?vrard <nicoe@…>
Branch:
default
Tags:
0.4.0
Message:

Preparation for the release.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • relatorio/__init__.py

    r62 r64  
     1""" 
     2relatorio 
     3========= 
     4 
     5A templating library which provides a way to easily output all kind of 
     6different files (odt, ods, png, svg, ...). Adding support for more filetype is 
     7easy: you just have to create a plugin for this. 
     8 
     9relatorio also provides a report repository allowing you to link python objects 
     10and report together, find reports by mimetypes/name/python objects. 
     11""" 
    112from relatorio.reporting import MIMETemplateLoader, ReportRepository, Report 
    213MIMETemplateLoader.load_template_engines() 
    314 
    4 __version__ = '0.3.0' 
     15__version__ = '0.4.0'