summaryrefslogtreecommitdiff
path: root/src/python/doc/python3-sphinx-build.py
blob: 3628e89eedb835343f9f496eafc5f8cbb7f6aa59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3

"""
Emulate sphinx-build for python3
"""

from sys import exit, argv, executable
print(executable)
import sphinx
from sphinx import main

if __name__ == '__main__':
    exit(main(argv))