Kevin Horn schrieb: > ImportError: No module named finddata > > I'm not really sure where this finddata module comes from.
It's from TurboGears 1.x, e.g.: http://trac.turbogears.org/browser/branches/1.1/turbogears/finddata.py I mentioned it several times that to use this from setup.py is a wrong strategy, IMHO, since it creates a chicken-egg-problem. But nobody seemed to care. You can just include the finddata.py file in the root directory of distribution or include the find_package_data() function directly in setup.py. > Also, the built eggs on PyPI include a bunch of .pyc files, which they > probably shouldn't. Probably there are in the SVN repository. Setuptools includes all files in SVN. You can create a MANIFEST.in file to exclude them. or throw them out of SVn and create appropriate svn:ignore rules either in the configuration or as properties (on each directory). Chris -- You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en.

