2012-07-21 13:56:04 +00:00
|
|
|
# flake8: noqa
|
2013-07-27 10:05:39 +00:00
|
|
|
from .base import Settings, Configuration
|
2013-05-15 08:59:02 +00:00
|
|
|
from .decorators import pristinemethod
|
2012-07-21 13:56:04 +00:00
|
|
|
|
2014-01-16 18:01:35 +00:00
|
|
|
__version__ = '0.8'
|
2013-09-03 11:10:25 +00:00
|
|
|
__all__ = ['Configuration', 'pristinemethod', 'Settings']
|
2013-09-18 21:24:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def load_ipython_extension(ipython):
|
|
|
|
|
# The `ipython` argument is the currently active `InteractiveShell`
|
|
|
|
|
# instance, which can be used in any way. This allows you to register
|
|
|
|
|
# new magics or aliases, for example.
|
|
|
|
|
from . import importer
|
|
|
|
|
|
|
|
|
|
importer.install()
|