1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import glob
from os import path as op
from mne.utils import run_subprocess
def setup(app):
app.connect('builder-inited', generate_commands_rst)
def setup_module():
# HACK: Stop nosetests running setup() above
pass
header = """.. _python_commands:
Command line tools using Python
===============================
.. contents:: Contents
:local:
:depth: 1
"""
command_rst = """
.. _gen_%s:
%s
----------------------------------------------------------
.. raw:: html
<div>
<pre>
%s
.. raw:: html
</pre>
</div>
"""
def generate_commands_rst(app):
out_dir = op.abspath(op.join(op.dirname(__file__), '..', 'generated'))
out_fname = op.join(out_dir, 'commands.rst')
command_path = op.join(os.path.dirname(__file__), '..', '..', 'mne',
'commands')
print('Generating commands for: %s ... ' % command_path, end='')
fnames = glob.glob(op.join(command_path, 'mne_*.py'))
with open(out_fname, 'w') as f:
f.write(header)
for fname in fnames:
cmd_name = op.basename(fname)[:-3]
output, _ = run_subprocess(['python', fname, '--help'])
f.write(command_rst % (cmd_name, cmd_name.replace('mne_', 'mne '),
output))
print('[Done]')
# This is useful for testing/iterating to see what the result looks like
if __name__ == '__main__':
generate_commands_rst()
|