I would like to have a target (say docs) that runs epydoc for my package. I assume that I need to create a new command but I am not having much luck.
Has anyone done this before?
I would like to have a target (say docs) that runs epydoc for my package. I assume that I need to create a new command but I am not having much luck.
Has anyone done this before?
Copyright © 2021 Jogjafile Inc.
The Babel project provides several commands for use in
setup.pyfiles.You need to define a
distutils.commandsentry point with commands; example from the Babelsetup.pyfile:where the extra commands are then available as
python setup.py commandname.The entry points point to subclasses of
from distutils.cmd import Command. Example again from Babel, from thebabel.messages.frontendmodule: