#!/usr/bin/env python
"""Migrate Jupyter config from IPython < 4.0"""

from jupyter_core.migrate import main

if __name__ == "__main__":
    main()
