OpenSecurity/bin/__init__.py
changeset 144 dd472ede7a9f
child 173 0659c6521fdc
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/OpenSecurity/bin/__init__.py	Mon May 12 18:00:05 2014 +0200
     1.3 @@ -0,0 +1,40 @@
     1.4 +#!/bin/env python
     1.5 +# -*- coding: utf-8 -*-
     1.6 +
     1.7 +# ------------------------------------------------------------
     1.8 +# opensecurity package file
     1.9 +# 
    1.10 +# Autor: Mihai Bartha, <mihai.bartha@ait.ac.at>
    1.11 +#        Oliver Maurhart, <oliver.maurhart@ait.ac.at>
    1.12 +#
    1.13 +# Copyright (C) 2013 AIT Austrian Institute of Technology
    1.14 +# AIT Austrian Institute of Technology GmbH
    1.15 +# Donau-City-Strasse 1 | 1220 Vienna | Austria
    1.16 +# http://www.ait.ac.at
    1.17 +#
    1.18 +# This program is free software; you can redistribute it and/or
    1.19 +# modify it under the terms of the GNU General Public License
    1.20 +# as published by the Free Software Foundation version 2.
    1.21 +# 
    1.22 +# This program is distributed in the hope that it will be useful,
    1.23 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.24 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.25 +# GNU General Public License for more details.
    1.26 +# 
    1.27 +# You should have received a copy of the GNU General Public License
    1.28 +# along with this program; if not, write to the Free Software
    1.29 +# Foundation, Inc., 51 Franklin Street, Fifth Floor, 
    1.30 +# Boston, MA  02110-1301, USA.
    1.31 +# ------------------------------------------------------------
    1.32 +
    1.33 +
    1.34 +# public modules
    1.35 +__all__ = []
    1.36 +
    1.37 +# package metadata
    1.38 +__author__      = 'The OpenSecurity Consortium'
    1.39 +__copyright__   = 'Copyright 2014 The OpenSecurity Consortium'
    1.40 +__license__     = 'GPL v3'
    1.41 +__title__       = 'opensecurity'
    1.42 +__version__     = '0.2.5'
    1.43 +