diff options
| author | Bryan Galdrikian <[email protected]> | 2018-05-31 11:36:08 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2018-05-31 11:36:08 -0700 |
| commit | 7115f60b91b5717d90f643fd692010905c7004db (patch) | |
| tree | effd68c6978751c517d54c2f2bb5bb6e7dc93e18 /buildtools/packman/packmanapi.py | |
| parent | Updating BlastTool zip (diff) | |
| download | blast-1.1.3_rc1.tar.xz blast-1.1.3_rc1.zip | |
Blast 1.1.3. See docs/release_notes.txt.v1.1.3_rc1
Diffstat (limited to 'buildtools/packman/packmanapi.py')
| -rwxr-xr-x[-rw-r--r--] | buildtools/packman/packmanapi.py | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/buildtools/packman/packmanapi.py b/buildtools/packman/packmanapi.py index 6475f9d..76e20d0 100644..100755 --- a/buildtools/packman/packmanapi.py +++ b/buildtools/packman/packmanapi.py @@ -1,16 +1,16 @@ -import os -import sys - - -def get_packman_module_dir(): - root_dir = os.environ['PM_PACKAGES_ROOT'] - common_dir = '4.0.1-common' - module_dir = os.path.join(root_dir, 'packman', common_dir) - return module_dir - - -sys.path.insert(0, get_packman_module_dir()) -from packman import pack -from packman import push -from packager import get_package_filename -from packager import create_package_from_file_list +import os
+import sys
+
+
+def get_packman_module_dir():
+ root_dir = os.environ['PM_PACKAGES_ROOT']
+ common_dir = '4.0.1-common'
+ module_dir = os.path.join(root_dir, 'packman', common_dir)
+ return module_dir
+
+
+sys.path.insert(0, get_packman_module_dir())
+from packman import pack
+from packman import push
+from packager import get_package_filename
+from packager import create_package_from_file_list
|