-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from JGCRI/loggin
Output messages now written through python loggers
- Loading branch information
Showing
7 changed files
with
95 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/bin/env python | ||
"""GCAM automation system package. | ||
"""Cassandra model coupling framework | ||
This package contains the components that implement the GCAM automation system, | ||
along with utility functions that are common to all GCAM functional areas. | ||
Several GCAM functional areas also have subpackages that implement calculations | ||
specific to those areas; for example, gcam.water for water downscaling or | ||
gcam.land for land use downscaling. The package also contains gcam_driver, a | ||
stand-alone program for running the automation system. | ||
This package contains the components that implement the Cassandra model | ||
coupling framework. The package also contains cassandra_main.py, a | ||
stand-alone program for running the framework. | ||
""" | ||
|
||
import pkg_resources | ||
|
||
__all__ = ['util', 'water', 'components'] | ||
__version__ = pkg_resources.get_distribution('cassandra').version | ||
|
||
__all__ = ['util', 'components'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.