OpenSecurity/bin/__init__.py
author Oliver Maurhart <oliver.maurhart@ait.ac.at>
Fri, 12 Sep 2014 12:16:51 +0200
changeset 222 ac227c9dc244
parent 214 2e2261ce334b
child 225 e68561e69f86
permissions -rwxr-xr-x
update verison numbers to 0.2.9
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@144
    10
# Copyright (C) 2013 AIT Austrian Institute of Technology
oliver@144
    11
# AIT Austrian Institute of Technology GmbH
oliver@144
    12
# Donau-City-Strasse 1 | 1220 Vienna | Austria
oliver@144
    13
# http://www.ait.ac.at
oliver@144
    14
#
oliver@144
    15
# This program is free software; you can redistribute it and/or
oliver@144
    16
# modify it under the terms of the GNU General Public License
oliver@144
    17
# as published by the Free Software Foundation version 2.
oliver@144
    18
# 
oliver@144
    19
# This program is distributed in the hope that it will be useful,
oliver@144
    20
# but WITHOUT ANY WARRANTY; without even the implied warranty of
oliver@144
    21
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
oliver@144
    22
# GNU General Public License for more details.
oliver@144
    23
# 
oliver@144
    24
# You should have received a copy of the GNU General Public License
oliver@144
    25
# along with this program; if not, write to the Free Software
oliver@144
    26
# Foundation, Inc., 51 Franklin Street, Fifth Floor, 
oliver@144
    27
# Boston, MA  02110-1301, USA.
oliver@144
    28
# ------------------------------------------------------------
oliver@144
    29
oliver@144
    30
oliver@144
    31
# public modules
oliver@144
    32
__all__ = []
oliver@144
    33
oliver@144
    34
# package metadata
oliver@144
    35
__author__      = 'The OpenSecurity Consortium'
oliver@144
    36
__copyright__   = 'Copyright 2014 The OpenSecurity Consortium'
oliver@144
    37
__license__     = 'GPL v3'
oliver@144
    38
__title__       = 'opensecurity'
oliver@222
    39
__version__     = '0.2.9'
oliver@144
    40