Blame src/bin/centpkg

Brian Stinson 8ac9e7
#!/usr/bin/env python
85a850
'''
85a850
   centpkg - a script to interact with CentOS Packages
85a850
'''
85a850
#
85a850
# Author(s):
85a850
#            Brian Stinson <bstinson@ksu.edu>
85a850
#            Pat Riehecky <riehecky@fnal.gov>
85a850
#
85a850
# This program is free software; you can redistribute it and/or modify it
85a850
# under the terms of the GNU General Public License as published by the
85a850
# Free Software Foundation; either version 2 of the License, or (at your
85a850
# option) any later version.  See http://www.gnu.org/copyleft/gpl.html for
85a850
# the full text of the license.
85a850
85a850
from centpkg.__main__ import main
85a850
85a850
if __name__ == "__main__":
Brian Stinson 8ac9e7
    main()
85a850