File: build_doc

package info (click to toggle)
python-mne 0.8.6%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 87,892 kB
  • ctags: 6,639
  • sloc: python: 54,697; makefile: 165; sh: 15
file content (16 lines) | stat: -rwxr-xr-x 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env python

import os
import sys

args = sys.argv

if '-h' in args:
    print "build_doc [--nocfg] [--nosphinx] [--noweb]"
    sys.exit(0)

if "--nosphinx" not in args:
    os.system("make html")

# if "--noweb" not in args:
#     os.system("scp -r build/html/* user@ftp.XXX.edu:pyfiff")