Metadata-Version: 1.1
Name: packmap
Version: 0.0.1
Summary: PackMap discovers all dependencies for a specificPython package
Home-page: https://github.com/jmvrbanac/PackMap
Author: John Vrbanac
Author-email: john.vrbanac@linux.com
License: Apache License 2.0
Description: ***************************************************
        PackMap - Python Package Dependency Finding Utility
        ***************************************************
        
        PackMap is a simple utility which finds all dependent packages for a given Python package. It does this by installing the package and all of its dependencies into a clean temporary virtual environment and probing installed components for their actual requirements.
        
        **Project:** `https://github.com/jmvrbanac/PackMap <https://github.com/jmvrbanac/PackMap>`_
        
        
        Installation:
        ==============
        PackMap is available on PyPI and can be installed with pip::
        	pip install packmap
        
        
        Usage:
        =======
        
        Checking the dependencies of a package on PyPI::
        	packmap lplight --pdf-results
        
        Checking the dependencies of a package on your hard drive::
        	packmap lplight --install-type path --install-path /path/to/package --pdf-results
        
        
        Results:
        =========
        
        PackMap output's two different type of results; JSON and PDF.
        
        * JSON results: Gives you the ability to parse through the results for yourself to find changes in version numbers or requirement specs.
        * PDF results: Produces an graph for easier viewing and consumption.
        
        .. note::
        	The PDF results functionality requires the graphviz system package to be installed.
        
Keywords: discover package dependencies graph dependency requirement
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: POSIX :: Linux
Classifier: Environment :: Console
Classifier: Topic :: Utilities
