Source code for panstamps.commonutils.getpackagepath

#!/usr/local/bin/python
# encoding: utf-8
"""
*Get common file and folder paths for the host package*

Author
: David Young
"""
import os

[docs] def getpackagepath(): """ *getpackagepath* """ moduleDirectory = os.path.dirname(__file__) packagePath = os.path.dirname(__file__) + "/../" return packagePath