Metadata-Version: 1.1
Name: prtdep
Version: 0.0.2
Summary: CRUX ports dependencies helper.
Home-page: https://github.com/darko-poljak/prtdep
Author: Darko Poljak
Author-email: darko.poljak@gmail.com
License: GPLv3
Download-URL: https://github.com/darko-poljak/prtdep
Description: prtdep
        =======
        
        CRUX linux ports dependencies helper.
        Help resolving dependencies for CURX ports.
        It calculates dependencies for specified list of ports root paths.
        It can list dependencies for list of packages, list packages that
        depend on specified list of packages. For specified packages it
        can print list of packages that can freely be removed after them
        to have system without orphans.
        
        Usage
        =====
        
        As library
        
        .. code:: python
        
            from prtdep import prtdep
            prtdep = prtdep.Prtdep('/usr/ports')
            prtdep.calc_deps()
            ...
        
        For a complete list of functionality see source code.
        
        As script::
        
            python prtdep.py --help
        
        As installed console script::
            
            prtdep --help
        
        Installation
        ============
        
        from source::
        
            python setup.py install
        
        or from PyPI::
        
            pip install prtdep
        
        Documentation
        =============
        
        this README.rst, code itself, docstrings
        
        prtdep can be found on github.com at:
        
        https://github.com/darko-poljak/prtdep
        
Keywords: ports dependencies helper
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Systems Administration
