Metadata-Version: 1.0
Name: setuptools-yaml
Version: 0.4
Summary: Use YAML file for your project metadata
Home-page: https://github.com/sudarkoff/setuptools-yaml
Author: George Sudarkoff
Author-email: george@sudarkoff.com
License: MIT
Description: setuptools-yaml
        ===============
        
        Use `YAML <http://www.yaml.org/>`__ for your project description
        
        .. image:: https://travis-ci.org/sudarkoff/setuptools-yaml.svg?branch=master
            :target: https://travis-ci.org/sudarkoff/setuptools-yaml
        
        
        Install
        =======
        
        1. Install this module
        
        .. code:: console
        
            pip install setuptools-yaml
        
        
        Use
        ===
        
        .. code:: python
        
            #!/usr/bin/env python
            # setup.py
        
            from setuptools import setup
        
            setup(
                ...
                setup_requires=['setuptools-yaml'],
                metadata_yaml='project.yml',
                ...
            )
        
        The plugin will read the specified file and populate the relevant metadata fields
        of your distribution.
        
        
        See also
        ========
        
        - pbr_
        
        
        .. _pbr: http://docs.openstack.org/developer/pbr/
        
Keywords: distutils setuptools metadata yaml
Platform: UNKNOWN
