|
|
|
|
@ -137,7 +137,8 @@ if 'setuptools' in sys.modules:
|
|
|
|
|
'ipcontroller = IPython.kernel.scripts.ipcontroller:main',
|
|
|
|
|
'ipengine = IPython.kernel.scripts.ipengine:main',
|
|
|
|
|
'ipcluster = IPython.kernel.scripts.ipcluster:main',
|
|
|
|
|
'ipythonx = IPython.frontend.wx.ipythonx:main'
|
|
|
|
|
'ipythonx = IPython.frontend.wx.ipythonx:main',
|
|
|
|
|
'iptest = IPython.testing.iptest:main',
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
setup_args["extras_require"] = dict(
|
|
|
|
|
@ -152,8 +153,6 @@ if 'setuptools' in sys.modules:
|
|
|
|
|
)
|
|
|
|
|
# Allow setuptools to handle the scripts
|
|
|
|
|
scripts = []
|
|
|
|
|
# eggs will lack docs, examples
|
|
|
|
|
data_files = []
|
|
|
|
|
else:
|
|
|
|
|
# package_data of setuptools was introduced to distutils in 2.4
|
|
|
|
|
cfgfiles = filter(isfile, glob('IPython/UserConfig/*'))
|
|
|
|
|
|