#!python
# -*- coding: utf-8 -*-
# vim: sw=4:ts=4:expandtab

""" An automated way to follow the Semantic Versioning Specification """

from __future__ import (
    absolute_import, division, print_function, with_statement,
    unicode_literals)

import sys
sys.path.append('../ongeza')

from ongeza import main

if __name__ == '__main__':
    main.run()
