Skip to content
ReimarBauer edited this page Mar 23, 2019 · 2 revisions

Common Template for mmodules.

If an author has done significant a majority of codelines added he can add himself additional with a further copyright line.

The AUTHORS file is sorted by first name.

Example:

#!python

# -*- coding: utf-8 -*-
"""

    mslib.ecmwftools
    ~~~~~~~~~~~~~~~~

    This module provides functions to process ECMWF forecast data.
  
    This file is part of mss.

    :copyright: Copyright 2008-2014 Deutsches Zentrum fuer Luft- und Raumfahrt e.V.
    :copyright: Copyright 2011-2014 Marc Rautenhaus (mr)
    :copyright: Copyright 2016-2019 by the mss team, see AUTHORS.
    :license: APACHE-2.0, see LICENSE for details.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
"""
     
    
# Additional Info: e.g.

# Parts of the code have been adapted from Chapter 6 of Sandro Tosi,
#'Matplotlib for Python Developers'.