1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2012 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
import os |
15 |
Import('*') |
16 |
|
17 |
epy_dir=os.path.join(release_dir, 'epydoc') |
18 |
env.Command(epy_dir, [], [Mkdir(epy_dir)]) |
19 |
|
20 |
env.Alias('api_epydoc', [env['pyinstall'], epy_dir], "epydoc --docformat restructuredtext -v --html -o "+epy_dir+" esys") |
21 |
|
22 |
# This will need to be here at least until the output of api_epydoc properly |
23 |
# depends on the libraries it uses as input |
24 |
env.AlwaysBuild('api_epydoc') |
25 |
|