""" pywmdockapps is a python module that will help you develop WindowMaker dockapps in python. It is a wrapper around the functions from wmgeneral.c. To get help about a contained package, try: help(pywmdockapps.) """ from .pywmgeneral import * from .pywmhelpers import * # __all__ controls what 'from pywmdockapps import *' pulls in. # If you want users to see 'pywmgeneral' and 'pywmhelpers' too, add them here. __all__ = ['wmoo', 'pywmgeneral', 'pywmhelpers']