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.  Here is the diff I used to get things to work:

--- src/setup.py        2008-09-25 19:41:13.000000000 -0700
+++ patches/setup.py    2008-09-25 22:15:23.000000000 -0700
@@ -4,7 +4,7 @@

 import os
 import sys
-from setuptools import setup
+from setuptools import setup, find_packages
 from distutils import log

 import sphinx
@@ -172,7 +172,7 @@
         'Topic :: Utilities',
     ],
     platforms='any',
-    packages=['sphinx'],
+    packages=find_packages(),
     include_package_data=True,
     entry_points={
         'console_scripts': [


--Mike

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to