#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
##########################################################################
# apt-eole - apt wrapper for EOLE
# Copyright © 2013 Pôle de compétences EOLE <eole@ac-dijon.fr>
#
# License CeCILL:
#  * in french: http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html
#  * in english http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
##########################################################################

"""Wrapp apt invocation to make it non-interactive

"""

from pyeole.pkg import apt_cli

if __name__ == '__main__':
    apt_cli()
