LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
__init__.py
Go to the documentation of this file.
1 # Explain what happens when you try to import outside scons
2 try:
3  import SCons.Script
4 except ImportError:
5  raise ImportError("lsst.sconsUtils cannot be imported outside an scons script.")
6 
7 # Try to import the generated version module.
8 try:
9  from .version import *
10 except:
11  __version__ = "unknown"
12 
13 # Pull some names into the package namespace
14 from .dependencies import configure, Configuration, ExternalConfiguration
15 from .state import env, opts, log, targets
16 from .builders import ProductDir
17 
18 # These inject methods into SConsEnviroment
19 from . import installation
20 from . import builders
21 
22 # These should remain in their own namespaces
23 from . import scripts
24 from . import tests