OpenSecurity/bin/__init__.py
author Oliver Maurhart <oliver.maurhart@ait.ac.at>
Mon, 12 May 2014 18:00:05 +0200
changeset 144 dd472ede7a9f
child 173 0659c6521fdc
permissions -rwxr-xr-x
mail icon and a package wide __init__.py (with metadata)
     1 #!/bin/env python
     2 # -*- coding: utf-8 -*-
     3 
     4 # ------------------------------------------------------------
     5 # opensecurity package file
     6 # 
     7 # Autor: Mihai Bartha, <mihai.bartha@ait.ac.at>
     8 #        Oliver Maurhart, <oliver.maurhart@ait.ac.at>
     9 #
    10 # Copyright (C) 2013 AIT Austrian Institute of Technology
    11 # AIT Austrian Institute of Technology GmbH
    12 # Donau-City-Strasse 1 | 1220 Vienna | Austria
    13 # http://www.ait.ac.at
    14 #
    15 # This program is free software; you can redistribute it and/or
    16 # modify it under the terms of the GNU General Public License
    17 # as published by the Free Software Foundation version 2.
    18 # 
    19 # This program is distributed in the hope that it will be useful,
    20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    22 # GNU General Public License for more details.
    23 # 
    24 # You should have received a copy of the GNU General Public License
    25 # along with this program; if not, write to the Free Software
    26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, 
    27 # Boston, MA  02110-1301, USA.
    28 # ------------------------------------------------------------
    29 
    30 
    31 # public modules
    32 __all__ = []
    33 
    34 # package metadata
    35 __author__      = 'The OpenSecurity Consortium'
    36 __copyright__   = 'Copyright 2014 The OpenSecurity Consortium'
    37 __license__     = 'GPL v3'
    38 __title__       = 'opensecurity'
    39 __version__     = '0.2.5'
    40