#!/usr/bin/python3
# pcp2pdf - a script to interact with the Fedora Packaging system
#
# Copyright (C) 2014 Michele Baldessari
# Author(s): Michele Baldessari <michele@acksyn.org>
#
# 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; either version 2 of the License, or (at your
# option) any later version.  See http://www.gnu.org/copyleft/gpl.html for
# the full text of the license.

from pcp2pdf.__main__ import main

if __name__ == "__main__":
    main()
