~samuel-taylor/entrypoint-manager/trunk

« back to all changes in this revision

Viewing changes to entrypoint/__init__.py

  • Committer: Samuel Taylor
  • Date: 2012-10-14 16:33:19 UTC
  • Revision ID: samtaylor.uk@gmail.com-20121014163319-cgtfvvwev77oz21b
Initial Import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
# This file is part of EntryPoint
 
3
### BEGIN LICENSE
 
4
# Copyright (C) 2011 Samuel Taylor <samtaylor.uk@gmail.com>
 
5
# This program is free software: you can redistribute it and/or modify it 
 
6
# under the terms of the GNU General Public License version 3, as published 
 
7
# by the Free Software Foundation.
 
8
 
9
# This program is distributed in the hope that it will be useful, but 
 
10
# WITHOUT ANY WARRANTY; without even the implied warranties of 
 
11
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
12
# PURPOSE.  See the GNU General Public License for more details.
 
13
 
14
# You should have received a copy of the GNU General Public License along 
 
15
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
### END LICENSE
 
17
 
 
18
 
 
19
##Find common package - entrypoint.common
 
20
import pkgutil
 
21
__path__ = pkgutil.extend_path(__path__, __name__)