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