#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2010-2012 Raphaël Barrois
# This software is distributed under the two-clause BSD license.

# PURPOSE
# This script is intended as a CLI front-end to the uconf python module

from uconf import cli
import sys

cli.main(sys.argv)
