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