__init__.py
Go to the documentation of this file.
1 # ============================================================================
2 # Copyright (c) 2011-2012 University of Pennsylvania
3 # Copyright (c) 2013-2016 Andreas Schuh
4 # All rights reserved.
5 #
6 # See COPYING file for license information or visit
7 # https://cmake-basis.github.io/download.html#license
8 # ============================================================================
9 
10 ##############################################################################
11 # @file basis/__init__.py
12 # @brief Initialization file of BASIS Utilities package.
13 ##############################################################################
14 
15 __all__ = [] # use of import * is discouraged
16 
17 # import utilities module
18 from . import utilities
19 # further, import main functions into this module's namespace
20 from .utilities import print_contact, print_version, \
21  exepath, exename, exedir, execute, SubprocessError