mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
organize IPython.parallel into subpackages
This commit is contained in:
parent
587b10631a
commit
b84c3f0cd6
@ -282,7 +282,10 @@ def make_runners():
|
||||
# Packages to be tested via nose, that only depend on the stdlib
|
||||
nose_pkg_names = ['config', 'core', 'extensions', 'frontend', 'lib',
|
||||
'scripts', 'testing', 'utils' ]
|
||||
|
||||
|
||||
if have['zmq']:
|
||||
nose_pkg_names.append('parallel')
|
||||
|
||||
# For debugging this code, only load quick stuff
|
||||
#nose_pkg_names = ['core', 'extensions'] # dbg
|
||||
|
||||
|
10
setup.py
10
setup.py
@ -215,19 +215,19 @@ 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.parallel.ipcontrollerapp:launch_new_instance',
|
||||
'ipengine = IPython.parallel.ipengineapp:launch_new_instance',
|
||||
'iplogger = IPython.parallel.iploggerapp:launch_new_instance',
|
||||
'ipcluster = IPython.parallel.ipclusterapp:launch_new_instance',
|
||||
'ipcontroller = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
|
||||
'ipengine = IPython.parallel.apps.ipengineapp:launch_new_instance',
|
||||
'iplogger = IPython.parallel.apps.iploggerapp:launch_new_instance',
|
||||
'ipcluster = IPython.parallel.apps.ipclusterapp:launch_new_instance',
|
||||
'iptest = IPython.testing.iptest:main',
|
||||
'irunner = IPython.lib.irunner:main'
|
||||
]
|
||||
}
|
||||
setup_args['extras_require'] = dict(
|
||||
parallel = 'pyzmq>=2.1.4',
|
||||
zmq = 'pyzmq>=2.0.10.1',
|
||||
doc='Sphinx>=0.3',
|
||||
test='nose>=0.10.1',
|
||||
security='pyOpenSSL>=0.6'
|
||||
)
|
||||
else:
|
||||
# If we are running without setuptools, call this function which will
|
||||
|
@ -127,7 +127,8 @@ def find_packages():
|
||||
add_package(packages, 'frontend.qt.console', tests=True)
|
||||
add_package(packages, 'frontend.terminal', tests=True)
|
||||
add_package(packages, 'lib', tests=True)
|
||||
add_package(packages, 'parallel', tests=True)
|
||||
add_package(packages, 'parallel', tests=True, scripts=True,
|
||||
others=['apps','engine','client','controller'])
|
||||
add_package(packages, 'quarantine', tests=True)
|
||||
add_package(packages, 'scripts')
|
||||
add_package(packages, 'testing', tests=True)
|
||||
|
Loading…
Reference in New Issue
Block a user