Thanks in advance,
Carlo
you'll have to do:
import pkg_resources
dist = pkg_resources.get_distribution('MyPackageName')
And it'll be in some attribute there, not sure what.
--
Ian Bicking | ia...@colorstudy.com | http://blog.ianbicking.org
Thanks. I fount it. It's the attribute
pkg_resources.get_distribution('MyPackageName').version
Cheers,
Carlo