Show More
@@ -48,7 +48,7 b' import os' | |||
|
48 | 48 | sys.path.append(os.path.dirname(__file__) + "/Extensions") |
|
49 | 49 | |
|
50 | 50 | # Define what gets imported with a 'from IPython import *' |
|
51 | __all__ = ['ipapi','generics','ipstruct','Release','Shell'] | |
|
51 | __all__ = ['IPython.core.ipapi','utils.generics','utils.ipstruct','Release','Shell'] | |
|
52 | 52 | |
|
53 | 53 | # Load __all__ in IPython namespace so that a simple 'import IPython' gives |
|
54 | 54 | # access to them via IPython.<name> |
@@ -30,7 +30,7 b" if os.path.exists('MANIFEST'): os.remove('MANIFEST')" | |||
|
30 | 30 | from distutils.core import setup |
|
31 | 31 | |
|
32 | 32 | # Local imports |
|
33 | from IPython.genutils import target_update | |
|
33 | from IPython.utils.genutils import target_update | |
|
34 | 34 | |
|
35 | 35 | from setupbase import ( |
|
36 | 36 | setup_args, |
@@ -143,7 +143,7 b" if 'setuptools' in sys.modules:" | |||
|
143 | 143 | setuptools_extra_args['zip_safe'] = False |
|
144 | 144 | setuptools_extra_args['entry_points'] = { |
|
145 | 145 | 'console_scripts': [ |
|
146 | 'ipython = IPython.ipapi:launch_new_instance', | |
|
146 | 'ipython = IPython.core.ipapi:launch_new_instance', | |
|
147 | 147 | 'pycolor = IPython.PyColorize:main', |
|
148 | 148 | 'ipcontroller = IPython.kernel.scripts.ipcontroller:main', |
|
149 | 149 | 'ipengine = IPython.kernel.scripts.ipengine:main', |
General Comments 0
You need to be logged in to leave comments.
Login now