]> git.proxmox.com Git - mirror_ifupdown2.git/blame - ifupdown2/__init__.py
config: local addons modules should be loaded first
[mirror_ifupdown2.git] / ifupdown2 / __init__.py
CommitLineData
d486dd0d
JF
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
43ea2a97 4__version__ = '1.2.1'
d486dd0d
JF
5
6# Copyright (C) 2014,2015,2016,2017,2018 Cumulus Networks, Inc. All rights reserved
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; version 2.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20# 02110-1301, USA.
21#
22# https://www.gnu.org/licenses/gpl-2.0-standalone.html
23#
24# Authors:
25# Roopa Prabhu, roopa@cumulusnetworks.com
26# Julien Fortin, julien@cumulusnetworks.com
27
28__license__ = 'GPL-2'
29__status__ = 'Production'
30__copyright__ = 'Copyright (C) 2014,2015,2016,2017,2018 Cumulus Networks, Inc.'
31
32
33__authors__ = [
34 'Roopa Prabhu',
35 'Julien Fortin'
36]
37__credits__ = [
38 'Roopa Prabhu',
39 'Julien Fortin'
40]
41__emails__ = [
42 'roopa@cumulusnetworks.com',
43 'julien@cumulusnetworks.com'
44]
45__maintainer__ = 'Julien Fortin'
46__email__ = 'julien@cumulusnetworks.com'