Metadata-Version: 1.1
Name: appveyor-artifacts
Version: 1.0.0
Summary: Download artifacts from AppVeyor builds of the same commit/pull request.
Home-page: https://github.com/Robpol86/appveyor-artifacts
Author: @Robpol86
Author-email: robpol86@gmail.com
License: MIT
Description: ==================
        appveyor-artifacts
        ==================
        
        Download artifacts from AppVeyor builds of the same commit/pull request.
        
        Supports editing/mangling Python coverage files so you can merge coverage files generated on AppVeyor/Windows with those
        generated on Linux/OSX/Travis.
        
        * Python 2.6, 2.7, PyPy, PyPy3, 3.3, 3.4, and 3.5 supported on Linux and OS X.
        
        .. image:: https://img.shields.io/appveyor/ci/Robpol86/appveyor-artifacts/master.svg?style=flat-square&label=AppVeyor%20CI
            :target: https://ci.appveyor.com/project/Robpol86/appveyor-artifacts
            :alt: Build Status Windows
        
        .. image:: https://img.shields.io/travis/Robpol86/appveyor-artifacts/master.svg?style=flat-square&label=Travis%20CI
            :target: https://travis-ci.org/Robpol86/appveyor-artifacts
            :alt: Build Status
        
        .. image:: https://img.shields.io/coveralls/Robpol86/appveyor-artifacts/master.svg?style=flat-square&label=Coveralls
            :target: https://coveralls.io/github/Robpol86/appveyor-artifacts
            :alt: Coverage Status
        
        .. image:: https://img.shields.io/pypi/v/appveyor-artifacts.svg?style=flat-square&label=Latest
            :target: https://pypi.python.org/pypi/appveyor-artifacts
            :alt: Latest Version
        
        .. image:: https://img.shields.io/pypi/dm/appveyor-artifacts.svg?style=flat-square&label=PyPI%20Downloads
            :target: https://pypi.python.org/pypi/appveyor-artifacts
            :alt: Downloads
        
        Quickstart
        ==========
        
        Install and run:
        
        .. code:: bash
        
            pip install appveyor-artifacts
            appveyor-artifacts --help
        
        Example
        =======
        
        Example usage in Travis CI yaml file:
        
        .. code:: yaml
        
            after_success:
              - mv .coverage .coverage.travis
              - appveyor-artifacts -m download
              - coverage combine
              - coveralls
        
        Changelog
        =========
        
        This project adheres to `Semantic Versioning <http://semver.org/>`_.
        
        1.0.0 - 2015-11-02
        ------------------
        
        * Initial release.
        
Keywords: appveyor artifacts travis coverage coveralls
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Terminals
