Metadata-Version: 1.0
Name: distutils-licenses
Version: 0.1.2
Summary: adds a command to setup.py to list licenses of packages
Home-page: http://github.com/dkoepke/distutils-licenses
Author: Daniel A. Koepke
Author-email: dkoepke@gmail.com
License: MIT
Description: ==================
        distutils-licenses
        ==================
        
        A command for setup.py to print the licenses of installed packages.
        
        To use, add ``distutils-licenses`` to the ``setup_requires`` keyword arg to the ``setup`` call in your ``setup.py``::
        
            setup(
                # ...
                setup_requires=['distutils-licenses'],
                # ...
            )
        
        After modifying your ``setup.py``, you will have a ``licenses`` command available to you:
        
            python setup.py licenses
        
        
Platform: UNKNOWN
