Metadata-Version: 1.2
Name: depinfo
Version: 1.2.0
Summary: List a package's direct dependencies and their versions.
Home-page: https://github.com/Midnighter/dependency-info
Author: Moritz E. Beber
Author-email: midnighter@posteo.net
License: Apache Software License Version 2.0
Description: ==============================
        Package Dependency Information
        ==============================
        
        .. image:: https://img.shields.io/pypi/v/depinfo.svg
           :target: https://pypi.org/project/depinfo/
           :alt: PyPI
        
        .. image:: https://travis-ci.org/Midnighter/dependency-info.svg?branch=master
           :target: https://travis-ci.org/Midnighter/dependency-info
           :alt: Travis CI
        
        .. image:: https://codecov.io/gh/Midnighter/dependency-info/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/Midnighter/dependency-info
           :alt: Codecov
        
        A utility Python package intended for other library packages. Provides a
        function that when called with your package name, will print
        platform and dependency information.
        
        Install
        =======
        
        It's as simple as:
        
        .. code-block:: console
        
            pip install depinfo
        
        Usage
        =====
        
        The easiest way is to implement the following in your package somewhere.
        
        .. code-block:: python
        
            from depinfo import print_dependencies
        
            def show_versions():
                print_dependencies("your-package-name")
        
        That's all there is to it.
        
        Example
        =======
        
        .. code-block:: python
        
            from depinfo import print_dependencies
            print_dependencies("depinfo")
        
        .. code-block:: console
        
            System Information
            ==================
            OS                     Linux
            OS-release 4.4.0-122-generic
            Python                 3.6.5
        
            Package Versions
            ================
            pip        10.0.1
            pipdeptree 0.12.1
            setuptools 39.0.1
            wheel      0.31.0
        
        Copyright
        =========
        
        * Copyright (c) 2018, Moritz E. Beber.
        * Free software: `Apache Software License 2.0 <https://github.com/Midnighter/dependency-info/blob/master/LICENSE>`_
        
Keywords: dependency,dependencies,tree,version
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7,!=3.1,!=3.2,!=3.3
