Metadata-Version: 1.1
Name: datapackage-pipelines-github
Version: 0.0.1
Summary: {{ DESCRIPTION }}
Home-page: https://github.com/frictionlessdata/datapackage-pipelines-github
Author: Open Knowledge Foundation
Author-email: info@okfn.org
License: MIT
Description: # datapackage-pipelines-github
        
        Extension for `datapackage-pipelines` for pulling GitHub issues of a repository and embedding them as 'failed' pipelines.
        
        ## Source spec
        
        Place files named `github.source-spec.yaml` in your pipelines directory.
        Each one should be of the form:
        ```yaml
        <pipeline-id-prefix>:
            repository: <owner/repo>
            pull-requests: <boolean, should fetch prs? default is no>
            closed: <boolean, should fetch closed issues? default is no>
            pipeline-id-format: <string, see below>
        ```
        
        `pipeline-id-format` is a Python format string with two placeholders:
        - `issue-id`: The issue number 
        - `title-slug`: The issue title slug
        
        The default format is "{issue-id:03}_{title-slug}"
        
        #### Example:
        ```yaml
        dpp-github/issues:
            repository: firctionlessdata/datapackage-pipelines-github
            pull-requests: no
            closed: no
            pipeline-id-format: "{title-slug}__{issue-id}"
        ```
Keywords: data
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
