On 2/7/06, Jeff Grimmett <[EMAIL PROTECTED]> wrote: > Is there a means of collecting the version data for all of the TG components > into one place that could be viewed, queried, or otherwise made to show the > operator what versions of everything is being used? A file, perhaps, that is > human readable? > > And if not, would it even be possible?
The easiest way to see that right now would be:
import pkg_resources
print pkg_resources.require("TurboGears")
Kevin

