From e1046222afca8a13dddd7191f1447a7baa29c438 2007-03-16 14:17:47 From: walter.doerwald Date: 2007-03-16 14:17:47 Subject: [PATCH] Add the igrid help files to the list of data files to be installed alongside igrid. --- diff --git a/doc/ChangeLog b/doc/ChangeLog index 49272db..71991ec 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-16 Walter Doerwald + + * setup.py: Add the igrid help files to the list of data files + to be installed alongside igrid. + 2007-03-15 Ville Vainio * Extensions/ipy_stock_completers.py: Fixed exception diff --git a/setup.py b/setup.py index fda0fe9..7123628 100755 --- a/setup.py +++ b/setup.py @@ -115,6 +115,7 @@ manpages = filter(isfile, glob('doc/*.1.gz')) cfgfiles = filter(isfile, glob('IPython/UserConfig/*')) scriptfiles = filter(isfile, ['scripts/ipython','scripts/pycolor', 'scripts/irunner']) +igridhelpfiles = filter(isfile, glob('IPython/Extensions/igrid_help.*')) # Script to be run by the windows binary installer after the default setup # routine, to add shortcuts and similar windows-only things. Windows @@ -132,8 +133,8 @@ datafiles = [('data', docdirbase, docfiles), ('data', os.path.join(docdirbase, 'manual'), manfiles), ('data', manpagebase, manpages), - ('lib', 'IPython/UserConfig', cfgfiles)] - + ('lib', 'IPython/UserConfig', cfgfiles), + ('data','IPython/Extensions', igridhelpfiles)] if 'setuptools' in sys.modules: # setuptools config for egg building egg_extra_kwds = {