Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
504 views
in Technique[技术] by (71.8m points)

python - How do I subclass the build command?

The subject is self-descriptive: I need to subclass the setup.py build command in order to perform additional build steps. However I've failed to find any build command class to inherit from. I've been trying:

class BuildCommandProxy(setuptools.command.build):
    pass

and

class BuildCommandProxy(distutils.command.build):
    pass

and even:

class BuildCommandProxy(setuptools.distutils.command.build):
    pass

without any success.

UPDATE: looking for how to implement something like this with setuptools.

UPDATE2: I have some custom command implementation:

class CustomCommand(setuptools.Command):
    # ...

What I would like to implement is to pass this command to cmdclass like this:

cmdclass={
    "build": CustomCommand,
}

and then invoke the original build in CustomCommand.run after doing some custom steps.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Setuptools does not override the distutils build command itself; only the build_py and build_ext subcommands.

So, to create your own subclass you need to import from the distutils.command.build module, which contains a build class (subclass of Command):

import distutils.command.build

class BuildCommandProxy(distutils.command.build.build):
    pass

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...