Coverage for sloancone/commonutils/getpackagepath.py : 0%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1#!/usr/local/bin/python
2# encoding: utf-8
3"""
4*Get common file and folder paths for the host package*
6:Author:
7 David Young
9:Date Created:
10 October 24, 2013
11"""
12################# GLOBAL IMPORTS ####################
13import sys
14import os
15from docopt import docopt
18def getpackagepath():
19 """
20 *getpackagepath*
21 """
22 moduleDirectory = os.path.dirname(__file__)
23 packagePath = os.path.dirname(__file__) + "/../"
25 return packagePath
28if __name__ == '__main__':
29 main()