2009/6/30 Chris Withers <[email protected]>:
>> http://pypi.python.org/pypi/SetupDocs/1.0.2
>
> This doesn't look like it uses Sphinx...
>
> What does it use?
It uses Sphinx (at least, I see Sphinx mentioned many times in the sources).
After installing SetupDocs, you should be able to do something like
from setuptools.command.develop import develop
class MyBuild(distbuild):
def run(self):
distbuild.run(self)
self.run_command('build_docs')
setup(
...
'build': MyBuild,
)
Cheers
Stéfan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sphinx-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sphinx-dev?hl=en
-~----------~----~----~----~------~----~------~--~---