OpenSecurity/bin/__init__.py
author Oliver Maurhart <oliver.maurhart@ait.ac.at>
Mon, 10 Nov 2014 16:58:39 +0100
changeset 247 bcadf8308abd
parent 241 6f73753677aa
child 250 7310daa5a362
permissions -rwxr-xr-x
verison number change to 0.2.12
     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 2013-2014 X-Net and AIT Austrian Institute of Technology
    11 # 
    12 # 
    13 #     X-Net Services GmbH
    14 #     Elisabethstrasse 1
    15 #     4020 Linz
    16 #     AUSTRIA
    17 #     https://www.x-net.at
    18 # 
    19 #     AIT Austrian Institute of Technology
    20 #     Donau City Strasse 1
    21 #     1220 Wien
    22 #     AUSTRIA
    23 #     http://www.ait.ac.at
    24 # 
    25 # 
    26 # Licensed under the Apache License, Version 2.0 (the "License");
    27 # you may not use this file except in compliance with the License.
    28 # You may obtain a copy of the License at
    29 # 
    30 #    http://www.apache.org/licenses/LICENSE-2.0
    31 # 
    32 # Unless required by applicable law or agreed to in writing, software
    33 # distributed under the License is distributed on an "AS IS" BASIS,
    34 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    35 # See the License for the specific language governing permissions and
    36 # limitations under the License.
    37 # ------------------------------------------------------------
    38 
    39 # public modules
    40 __all__ = []
    41 
    42 # package metadata
    43 __author__      = 'The OpenSecurity Consortium'
    44 __copyright__   = 'Copyright 2014 The OpenSecurity Consortium'
    45 __license__     = 'GPL v3'
    46 __title__       = 'opensecurity'
    47 __version__     = '0.2.12'
    48