Metadata-Version: 1.0
Name: findimports
Version: 1.2.12
Summary: Python module import analysis tool
Home-page: https://launchpad.net/findimports
Author: Marius Gedminas
Author-email: marius@gedmin.as
License: GPL
Download-URL: http://pypi.python.org/pypi/findimports
Description: FindImports
        ===========
        
        FindImports extracts Python module dependencies by parsing source files.
        It can report names that are imported but not used, and it can generate
        module import graphs in ASCII or graphviz formats.
        
        A distinguishing feature of findimports is that it can parse doctest code
        inside docstrings.
        
        Note that not all cases are handled correctly, especially if you use
        'import foo.bar.baz'.
        
        FindImports requires Python 2.4 or later.
        
        
        Changes
        =======
        
        
        1.2.12 (2011-04-08)
        -------------------
        
        - Handle zipfile errors when there are plain files that are not zip files
          on sys.path.
        
        
        1.2.11 (2011-03-30)
        -------------------
        
        - Fix 'could not find cPickle' errors on Python 2.6 and newer.
        
        
        1.2.10 (2010-02-05)
        -------------------
        
        - Ignore 'from __future__ import ...'.
        
        
        1.2.9 (2009-07-07)
        ------------------
        
        - Fixed broken and uninstallable source distribution by adding a MANIFEST.in.
        
        
        1.2.8 (2009-07-07)
        ------------------
        
        - Is able to find modules inside zip files (e.g. eggs).
        - Fixed deprecation warning on Python 2.6.
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
