##// END OF EJS Templates
Add the igrid help files to the list of data files...
walter.doerwald -
Show More
@@ -1,3 +1,8 b''
1 2007-03-16 Walter Doerwald <walter@livinglogic.de>
2
3 * setup.py: Add the igrid help files to the list of data files
4 to be installed alongside igrid.
5
1 6 2007-03-15 Ville Vainio <vivainio@gmail.com>
2 7
3 8 * Extensions/ipy_stock_completers.py: Fixed exception
@@ -115,6 +115,7 b" manpages = filter(isfile, glob('doc/*.1.gz'))"
115 115 cfgfiles = filter(isfile, glob('IPython/UserConfig/*'))
116 116 scriptfiles = filter(isfile, ['scripts/ipython','scripts/pycolor',
117 117 'scripts/irunner'])
118 igridhelpfiles = filter(isfile, glob('IPython/Extensions/igrid_help.*'))
118 119
119 120 # Script to be run by the windows binary installer after the default setup
120 121 # routine, to add shortcuts and similar windows-only things. Windows
@@ -132,8 +133,8 b" datafiles = [('data', docdirbase, docfiles),"
132 133 ('data', os.path.join(docdirbase, 'manual'),
133 134 manfiles),
134 135 ('data', manpagebase, manpages),
135 ('lib', 'IPython/UserConfig', cfgfiles)]
136
136 ('lib', 'IPython/UserConfig', cfgfiles),
137 ('data','IPython/Extensions', igridhelpfiles)]
137 138 if 'setuptools' in sys.modules:
138 139 # setuptools config for egg building
139 140 egg_extra_kwds = {
General Comments 0
You need to be logged in to leave comments. Login now