| #!/usr/bin/env python |
| ''' |
| centpkg - a script to interact with CentOS Packages |
| ''' |
| # |
| # Author(s): |
| # Brian Stinson <bstinson@ksu.edu> |
| # Pat Riehecky <riehecky@fnal.gov> |
| # Michal Konecny <michal.konecny@psmail.xyz> |
| # |
| # 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 centpkg.__main__ import main |
| |
| if __name__ == "__main__": |
| main(sig=True) |
| |