source: mailjam/mailjam/__init__.py@ 29:5c820cb8c5b9

Last change on this file since 29:5c820cb8c5b9 was 29:5c820cb8c5b9, checked in by Borja Lopez <borja@…>, 12 years ago

Added version to the package

File size: 391 bytes
Line 
1# -*- coding: utf-8 -*-
2
3"""
4The mailjam project - A small mailing list manager
5
6This file is released under the BSD license, see LICENSE for
7more information.
8
9Francisco de Borja Lopez Rio - <borja@codigo23.net>
10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
11"""
12
13__version__ = '0.1.0'
14
15
16from mailjam.models import Member, MailingList
17from mailjam.storage import JsonStorage
Note: See TracBrowser for help on using the repository browser.