mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-21 01:11:21 +08:00
remove IPython.kernel scripts and put migration notice in docs.
closes gh-325
This commit is contained in:
parent
1277658644
commit
6ea1a28d55
6
setup.py
6
setup.py
@ -215,9 +215,9 @@ if 'setuptools' in sys.modules:
|
||||
'ipython = IPython.frontend.terminal.ipapp:launch_new_instance',
|
||||
'ipython-qtconsole = IPython.frontend.qt.console.ipythonqt:main',
|
||||
'pycolor = IPython.utils.PyColorize:main',
|
||||
'ipcontroller = IPython.kernel.ipcontrollerapp:launch_new_instance',
|
||||
'ipengine = IPython.kernel.ipengineapp:launch_new_instance',
|
||||
'ipcluster = IPython.kernel.ipclusterapp:launch_new_instance',
|
||||
# 'ipcontroller = IPython.kernel.ipcontrollerapp:launch_new_instance',
|
||||
# 'ipengine = IPython.kernel.ipengineapp:launch_new_instance',
|
||||
# 'ipcluster = IPython.kernel.ipclusterapp:launch_new_instance',
|
||||
'iptest = IPython.testing.iptest:main',
|
||||
'irunner = IPython.lib.irunner:main'
|
||||
]
|
||||
|
15
setupbase.py
15
setupbase.py
@ -120,6 +120,7 @@ def find_packages():
|
||||
add_package(packages, 'external.pyparsing')
|
||||
add_package(packages, 'external.simplegeneric')
|
||||
add_package(packages, 'external.validate')
|
||||
add_package(packages, 'kernel')
|
||||
add_package(packages, 'frontend')
|
||||
add_package(packages, 'frontend.qt')
|
||||
add_package(packages, 'frontend.qt.console', tests=True)
|
||||
@ -259,11 +260,11 @@ def find_scripts():
|
||||
"""
|
||||
Find IPython's scripts.
|
||||
"""
|
||||
kernel_scripts = pjoin('IPython','kernel','scripts')
|
||||
# kernel_scripts = pjoin('IPython','kernel','scripts')
|
||||
main_scripts = pjoin('IPython','scripts')
|
||||
scripts = [pjoin(kernel_scripts, 'ipengine'),
|
||||
pjoin(kernel_scripts, 'ipcontroller'),
|
||||
pjoin(kernel_scripts, 'ipcluster'),
|
||||
scripts = [# pjoin(kernel_scripts, 'ipengine'),
|
||||
# pjoin(kernel_scripts, 'ipcontroller'),
|
||||
# pjoin(kernel_scripts, 'ipcluster'),
|
||||
pjoin(main_scripts, 'ipython'),
|
||||
pjoin(main_scripts, 'ipython-qtconsole'),
|
||||
pjoin(main_scripts, 'pycolor'),
|
||||
@ -296,8 +297,6 @@ def check_for_dependencies():
|
||||
"""
|
||||
from setupext.setupext import (
|
||||
print_line, print_raw, print_status,
|
||||
check_for_zopeinterface, check_for_twisted,
|
||||
check_for_foolscap, check_for_pyopenssl,
|
||||
check_for_sphinx, check_for_pygments,
|
||||
check_for_nose, check_for_pexpect
|
||||
)
|
||||
@ -311,10 +310,6 @@ def check_for_dependencies():
|
||||
print_raw("")
|
||||
print_raw("OPTIONAL DEPENDENCIES")
|
||||
|
||||
check_for_zopeinterface()
|
||||
check_for_twisted()
|
||||
check_for_foolscap()
|
||||
check_for_pyopenssl()
|
||||
check_for_sphinx()
|
||||
check_for_pygments()
|
||||
check_for_nose()
|
||||
|
Loading…
Reference in New Issue
Block a user