equal
deleted
inserted
replaced
244 ext_modules.append(Extension('hgext.inotify.linux._inotify', |
244 ext_modules.append(Extension('hgext.inotify.linux._inotify', |
245 ['hgext/inotify/linux/_inotify.c'])) |
245 ['hgext/inotify/linux/_inotify.c'])) |
246 packages.extend(['hgext.inotify', 'hgext.inotify.linux']) |
246 packages.extend(['hgext.inotify', 'hgext.inotify.linux']) |
247 |
247 |
248 datafiles = [] |
248 datafiles = [] |
249 for root in ('templates', 'i18n'): |
249 for root in ('templates', 'i18n', 'help'): |
250 for dir, dirs, files in os.walk(root): |
250 for dir, dirs, files in os.walk(root): |
251 dirs[:] = [x for x in dirs if not x.startswith('.')] |
251 dirs[:] = [x for x in dirs if not x.startswith('.')] |
252 files = [x for x in files if not x.startswith('.')] |
252 files = [x for x in files if not x.startswith('.')] |
253 datafiles.append((os.path.join('mercurial', dir), |
253 datafiles.append((os.path.join('mercurial', dir), |
254 [os.path.join(dir, file_) for file_ in files])) |
254 [os.path.join(dir, file_) for file_ in files])) |