File: fabfile.py

package info (click to toggle)
python-cluster 1.4.1.post3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 412 kB
  • sloc: python: 812; makefile: 146; sh: 4
file content (10 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
import fabric.api as fab


@fab.task
def doc():
    with fab.lcd('docs'):
        fab.local('../env/bin/sphinx-build '
                  '-b html '
                  '-d _build/doctrees . '
                  '_build/html')