openlp/openlp/__init__.py

29 lines
1.7 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2013-07-18 19:28:35 +00:00
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2015-12-31 22:46:06 +00:00
# Copyright (c) 2008-2016 OpenLP Developers #
# --------------------------------------------------------------------------- #
# 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; version 2 of the License. #
# #
# 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 #
2010-03-21 23:58:01 +00:00
###############################################################################
2010-06-10 01:57:59 +00:00
"""
2010-06-10 13:12:19 +00:00
The :mod:`openlp` module contains all the project produced OpenLP functionality
"""
2014-04-12 20:22:31 +00:00
from openlp import core, plugins
2013-08-31 18:17:38 +00:00
__all__ = ['core', 'plugins']