# HG changeset patch # User Jeff Hammel # Date 1359431850 28800 # Node ID 4446cba4cee6bbf01dd6d5108fe44898a204c7ca # Parent 758a3e56a738ff21ca5dcb53486c2a426c47ab6a update CommandParser and docstring for it diff -r 758a3e56a738 -r 4446cba4cee6 paint/package.py --- a/paint/package.py Mon Jan 28 19:08:45 2013 -0800 +++ b/paint/package.py Mon Jan 28 19:57:30 2013 -0800 @@ -22,13 +22,14 @@ class Package(object): """ - class for python package introspection. - constructor takes the package 'src' + python package introspection. + invoked with the package source, 'src' """ def __init__(self, src, verbose=True): """ - src : URL or filesystem path to the package + - verbose : show verbose output """ self.src = src self.verbose = verbose diff -r 758a3e56a738 -r 4446cba4cee6 setup.py --- a/setup.py Mon Jan 28 19:08:45 2013 -0800 +++ b/setup.py Mon Jan 28 19:57:30 2013 -0800 @@ -5,7 +5,10 @@ import os version = "0.1.2" -dependencies = ['virtualenv >= 1.7.1.2', 'pip >= 1.1', 'pkginfo', 'CommandParser >= 0.1.3'] +dependencies = ['virtualenv >= 1.7.1.2', + 'pip >= 1.1', + 'pkginfo', + 'CommandParser >= 0.2'] # allow use of setuptools/distribute or distutils kw = {}