Mike Hansen schrieb: > Hello, > > I was running into some issues installing the SVN version of Sphinx. > It's the same issue as is here: > http://groups.google.com/group/sphinx-dev/browse_thread/thread/1ececc73364fbca0 > . The problem is that in setup.py ( > http://svn.python.org/projects/doctools/trunk/setup.py > ) on the 'packages=' line, the only package specified is 'sphinx'. > Setuptools does not automatically include subpackages so that line > should either specify all subpackages or use the find_packages() > function.
FYI: As Mike and I discussed in IRC, setuptools' magic works fine if one of these conditions are met: * The source is checked out from SVN, there are .svn dirs. * There is a Sphinx.egg-info directory in the directory of setup.py generated by setup.py sdist (it contains a list of source files). This is the case for the source packages distributed as releases. Since one of these conditions should always be met, we concluded that using find_packages() -- and noting all package data in a MANIFEST.in -- is not necessary. Georg --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
