Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief Help messages. 

4""" 

5 

6 

7def get_help_usage(): 

8 """ 

9 Returns the usage ``python setup.py build_sphinx``. 

10 """ 

11 return ( # pragma: no cover 

12 """ 

13 This command will build the documentation form the source. 

14 It will not work from the installed package. 

15 This is a custom build, the regular options with build_sphinx will not work. 

16 The output will be copied in folder dist. 

17 

18 Usage: 

19 

20 python setup.py build_sphinx 

21 """.replace(" ", ""))