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