]> git.proxmox.com Git - mirror_ifupdown2.git/blob - ifupdown2/__init__.py
setup.py: bumping version from 1.2.5 to 1.2.9
[mirror_ifupdown2.git] / ifupdown2 / __init__.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 __version__ = '1.2.9'
5
6 # Copyright (C) 2014,2015,2016,2017,2018,219 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,2019 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'