Skip to content

Commit

Permalink
add __init__.py comments for subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
nilshempelmann committed Nov 28, 2018
1 parent 11815e5 commit a6ff49e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
9 changes: 7 additions & 2 deletions eggshell/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# -*- coding: utf-8 -*-

"""Top-level package for Eggshell."""
"""Top-level package for Eggshell.
eggshell is a function library to be used in birds of birdhouse.
eggshell is organised in subpackages ordered thematically.
"""

__author__ = """Nils Hempelmann"""
__email__ = 'info@nilshempelmann.de'
__email__ = 'info[@]nilshempelmann.de'
__version__ = '0.4.0'
4 changes: 4 additions & 0 deletions eggshell/eo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"""EO subpackage of Eggshell.
eggshell.eo contains functions related to Earth-Obersvation analysis
"""
4 changes: 4 additions & 0 deletions eggshell/nc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"""NC subpackage of Eggshell
eggshell.nc contains functions related to netCDF4 processing
"""
5 changes: 5 additions & 0 deletions eggshell/visual/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Visual subpackage of eggshell
eggshell.visula contains functions for ploting and data visualisation purpose
"""

0 comments on commit a6ff49e

Please sign in to comment.