0

ビルドされたsconsからepydocまたは/およびpylintを実行するビルダーを作成するにはどうすればよいですか?

4

3 に答える 3

1

独自のビルダーを作成する代わりに、 Command() ビルダーを使用できます。

たとえば、次のように epydoc を実行できます。

# SCons will substitute $SOURCE and $TARGET accordingly
# add any extra cmd line args you need to the cmd string
cmd = 'epydoc $SOURCE $TARGET'
env.Command(target = yourTarget, source = yourSourceFile_s, action = cmd)
于 2012-08-03T08:18:51.977 に答える
0

Here is what I ended up using, based on Brady's answer.

## Create epydoc!
import os.path
if os.path.isfile('/usr/bin/epydoc'):
    sources = Split("__init__.py ook/ eek/ fubar/")
    cmd = "epydoc -q --name 'Isotek Python Module collection' " + \
          "--html --inheritance listed --graph all -o docs --css white " + \
          "--parse-only --debug $SOURCES"
    env.Command(target = Dir('docs'), source = sources, action = cmd)
else:
    print "WARNING -- Cannot run epydoc so documentation will not be generated."
    print "WARNING -- To install epydoc run 'sudo yum -y install epydoc'."

Note that I am running on fedora and do not need to worry about the code running elsewhere thus I can assume the path and how to install epydoc. A more general edit is welcome.

于 2012-08-03T10:25:05.593 に答える
0

これは別の方法で、おそらく大規模なプロジェクトにより移植性があります。

epydoc.pyまず、 in (またはそれらがある場所) を次のように定義しsite_scons/site_toolsます。

# -*- coding: utf-8 -*-
import SCons.Builder
import SCons.Action

def complain_epydoc(target, source, env):
    print 'INFORMATION: epydoc binary was not found (see above). Documentation has not been built.'

def generate(env):
    env['EPYDOC'] = find_epydoc(env)
    if env['EPYDOC'] != None:
        opts = '--quiet --html --inheritance listed --graph all --css white --parse-only '
        env['EPYDOCCOM'] = '$EPYDOC ' + opts + '-o $TARGET  $SOURCES'
        env['BUILDERS']['epydoc'] = SCons.Builder.Builder(action=env['EPYDOCCOM'])
    else:
        env['BUILDERS']['epydoc'] = SCons.Builder.Builder(action=env.Action(complain_epydoc))

def find_epydoc(env):
    b=env.WhereIs('epydoc')
    if b == None:
        print 'Searching for epydoc: not found. Documentation will not be built'
    else:
        print 'Searching for epydoc: ', b
    return b

def exists(env):
    if find_epydoc(env) == None:
        return 0
    return 1

メインSConstructファイルで、次を追加します。

import epdoc
env.Tool("epydoc")

次に、SConstructファイルまたはSConscriptファイルで、次のようにドキュメントを作成できます。

Alias('epydoc', env.epydoc(source=python_code_files, target=Dir('docs')))

: ほんの数例を挙げると、ctags と pylint に対して同じことを行うことができます。

于 2012-08-03T12:58:45.127 に答える