mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-01 12:56:54 +08:00
Merge branch 'newapp'
closes gh-503 closes gh-454 closes gh-79 closes gh-456 closes gh-451
This commit is contained in:
commit
76a5fa2456
2
setup.py
2
setup.py
@ -213,7 +213,7 @@ if 'setuptools' in sys.modules:
|
||||
setuptools_extra_args['entry_points'] = find_scripts(True)
|
||||
setup_args['extras_require'] = dict(
|
||||
parallel = 'pyzmq>=2.1.4',
|
||||
zmq = 'pyzmq>=2.0.10.1',
|
||||
zmq = 'pyzmq>=2.1.4',
|
||||
doc='Sphinx>=0.3',
|
||||
test='nose>=0.10.1',
|
||||
)
|
||||
|
@ -103,7 +103,7 @@ def find_packages():
|
||||
Find all of IPython's packages.
|
||||
"""
|
||||
packages = ['IPython']
|
||||
add_package(packages, 'config', tests=True, others=['default','profile'])
|
||||
add_package(packages, 'config', tests=True, others=['profile'])
|
||||
add_package(packages, 'core', tests=True)
|
||||
add_package(packages, 'deathrow', tests=True)
|
||||
add_package(packages, 'extensions')
|
||||
@ -150,8 +150,8 @@ def find_package_data():
|
||||
# This is not enough for these things to appear in an sdist.
|
||||
# We need to muck with the MANIFEST to get this to work
|
||||
package_data = {
|
||||
'IPython.config.userconfig' : ['*'],
|
||||
'IPython.testing' : ['*.txt']
|
||||
'IPython.config.profile' : ['README', '*/*.py'],
|
||||
'IPython.testing' : ['*.txt'],
|
||||
}
|
||||
return package_data
|
||||
|
||||
@ -280,7 +280,7 @@ def find_scripts(entry_points=False):
|
||||
'irunner = IPython.lib.irunner:main'
|
||||
]
|
||||
gui_scripts = [
|
||||
'ipython-qtconsole = IPython.frontend.qt.console.ipythonqt:main',
|
||||
'ipython-qtconsole = IPython.frontend.qt.console.qtconsoleapp:main',
|
||||
]
|
||||
scripts = dict(console_scripts=console_scripts, gui_scripts=gui_scripts)
|
||||
else:
|
||||
@ -292,7 +292,6 @@ def find_scripts(entry_points=False):
|
||||
pjoin(parallel_scripts, 'ipcluster'),
|
||||
pjoin(parallel_scripts, 'iplogger'),
|
||||
pjoin(main_scripts, 'ipython'),
|
||||
pjoin(main_scripts, 'ipython-qtconsole'),
|
||||
pjoin(main_scripts, 'pycolor'),
|
||||
pjoin(main_scripts, 'irunner'),
|
||||
pjoin(main_scripts, 'iptest')
|
||||
|
Loading…
Reference in New Issue
Block a user