#!/usr/bin/env python2.7
# This file is part of SwiftWAL, a tool to integrate PostgreSQL
# filesystem level backups, WAL archiving and point-in-time recovery
# with OpenStack Swift storage.
# Copyright 2013 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.

'''Command line launcher for running SwiftWal from the source tree.

Standard installations get a launcher script generated by setuputils.
'''

import os.path
import sys
sys.path.insert(
    0, os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir)))
from swiftwal.commands import main
main()
