changeset 81:4446cba4cee6

update CommandParser and docstring for it
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 28 Jan 2013 19:57:30 -0800
parents 758a3e56a738
children 6922c1d4f486
files paint/package.py setup.py
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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 = {}