Metadata-Version: 2.1
Name: github-file
Version: 0.1.3
Summary: Configure your GitHub repository from a file, without having to click around in the UI.
Home-page: https://github.com/jacquerie/github-file
Author: Jacopo Notarstefano
Author-email: jacopo.notarstefano@gmail.com
License: MIT
Description: =============
         GitHub-File
        =============
        
        .. image:: https://travis-ci.org/jacquerie/github-file.svg?branch=master
            :target: https://travis-ci.org/jacquerie/github-file
        
        .. image:: https://coveralls.io/repos/github/jacquerie/github-file/badge.svg?branch=master
            :target: https://coveralls.io/github/jacquerie/github-file?branch=master
        
        
        About
        =====
        
        Configure your GitHub repository from a file, without having to click around in
        the UI.
        
        
        Install
        =======
        
        ``github-file`` is on PyPI, so all you have to do is:
        
        .. code-block:: console
        
            $ pip install github-file
        
        
        Usage
        =====
        
        Currently ``github-file`` implements one subcommand:
        
        .. code-block:: console
        
            $ github-file update
        
        This will update the configuration of your repository on GitHub so that it
        matches what is described in a file called (by default) ``Githubfile`` in the
        ``.github`` folder. Here's an example of such a file:
        
        .. code-block:: ini
        
            [core]
            owner = jacquerie
            repo = github-file
            description = Configure your GitHub repository from a file,
                without having to click around in the UI.
        
            [features]
            has_issues = true
            has_wiki = false
        
        The meaning of these options is explained in GitHub's API documentation at
        https://developer.github.com/v3/repos/#edit, although not all options are
        currently available. Here's what's currently configurable:
        
        - ``description``
        - ``homepage``
        - ``private``
        - ``has_issues``
        - ``has_wiki``
        
        
        Author
        ======
        
        Jacopo Notarstefano (`@Jaconotar`_)
        
        .. _`@Jaconotar`: https://twitter.com/Jaconotar
        
        
        License
        =======
        
        MIT
        
Platform: any
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Provides-Extra: docs
Provides-Extra: tests
Provides-Extra: all
