Mercurial > hg > PaInt
view paint/package2.py @ 59:acee5e882768
the egg-info tests fail. yay!
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 25 Jan 2013 07:12:33 -0800 |
parents | c588375a7ce4 |
children |
line wrap: on
line source
""" Goals: - expose package information for a given setup.py/package - ensure that for a given set of packages that the versions are consistent """ class Package2(object): def __init__(self, src, verbose=True): self.verbose = verbose self._info = None self._setup_py = None # local path to setup.py def info(self): """return info dictionary for a package""" class PackageSet(object): """ a group of packages Functionality: - unroll dependencies - check consistency of dependencies """