Metadata-Version: 2.0
Name: ghscard
Version: 0.0.5
Summary: A JavaScript widget to generate interactive GitHub user/repository/organization cards for static web pages (like GitHub pages).
Requires-Dist: appconfigpy (>=0.0.3)
Requires-Dist: click (>=0.6.7)
Requires-Dist: logbook (>=1.1.0)
Requires-Dist: pathvalidate (>=0.16.2)
Requires-Dist: PyGithub (>=1.35)
Requires-Dist: requests (>=2.18.4)
Requires-Dist: typepy (>=0.0.20)
Requires-Dist: six
Provides-Extra: docs
Requires-Dist: path.py; extra == 'docs'
Requires-Dist: readmemaker (>=0.3.0); extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Requires-Dist: Sphinx; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: tox; extra == 'test'

Home-page: https://github.com/thombashi/ghscard
Author: Tsuyoshi Hombashi
Author-email: tsuyoshi.hombashi@gmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Description: ghscard
        =======
        
        .. image:: https://img.shields.io/travis/thombashi/ghscard/master.svg?label=Linux
            :target: https://travis-ci.org/thombashi/ghscard
        
        .. image:: https://img.shields.io/github/stars/thombashi/ghstaticcard.svg?style=social&label=Star
           :target: https://github.com/thombashi/ghscard
        
        Summary
        -------
        
        A JavaScript widget to generate interactive GitHub user/repository/organization cards for static web pages (like GitHub pages).
        
        Demo
        ====
        
        ﻿- `Popular Repositories on GitHub <https://thombashi.github.io/ghscard/demo/>`__
        - https://thombashi.github.io/
        
        Quick Start
        ================
        
        CLI Tool Installation
        ----------------------------------
        Install ``ghscard`` CLI tool from `PyPI <//pypi.python.org/pypi>`__ via
        `pip <//pip.pypa.io/en/stable/installing/>`__ (Python package manager) command.
        
        ::
        
            pip install ghscard
        
        
        Generate card data files
        ----------------------------------
        Execute ``ghscard gen`` command to generate a GitHub user/organization/repository card data file.
        
        ::
        
            $ ghscard gen thombashi -o data
            [INFO] ghscard gen: written user data to 'data/thombashi.json'
        
        ::
        
            $ ghscard gen Microsoft/TypeScript -o data
            [INFO] ghscard gen: written repository data to 'data/Microsoft_TypeScript.json'
        
        
        Add widget to an HTML file
        ----------------------------------
        
        :Example:
            .. code:: html
        
                <!doctype html>
                <html>
                <body>
                    <table border="0">
                        <tr>
                            <td>
                                <div class='ghscard' src='data/thombashi.json'></div>
                            </td>
                            <td>
                                <div class="ghscard" src="data/Microsoft_TypeScript.json"></div>
                            </td>
                        </tr>
                    </table>
        
                    <script src='//rawgit.com/thombashi/ghscard/master/dist/ghscard.min.js'></script>
                </body>
                </html>
        
        This HTML rendered as follows:
        
        :Output:
            .. image:: ss/quickstart.png
                :width: 600px
                :alt: Click to navigate to the HTML page
                :target: //thombashi.github.io/ghscard/quickstart/
        
        For more information
        --------------------
        
        More examples are available at 
        http://ghscard.rtfd.io/en/latest/pages/usage/index.html
        
        Dependencies
        ============
        
        CLI Tool Dependencies
        ----------------------
        Python 2.7+ or 3.3+
        
        - `appconfigpy <//github.com/thombashi/appconfigpy>`__
        - `click <//github.com/pallets/click>`__
        - `logbook <//logbook.readthedocs.io/en/stable/>`__
        - `pathvalidate <//github.com/thombashi/pathvalidate>`__
        - `PyGithub <//pygithub.github.io/PyGithub/v1/index.html>`__
        - `requests <//python-requests.org/>`__
        - `typepy <//github.com/thombashi/typepy>`__
        - `six <//pypi.python.org/pypi/six/>`__
        
        Tested environment
        =======================
        
        .. table:: Tested Web Browsers
        
            =======================  ===========================
            Web browser              Version
            =======================  ===========================
            ``Google Chrome``        ``57.0`` or newer
            ``Mozilla Firefox``      ``52.0`` or newer
            =======================  ===========================
        
        Documentation
        -------------
        
        http://ghscard.rtfd.io/
        
        
Keywords: GitHub,JavaScript,Widget
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
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
Classifier: Topic :: Software Development :: Widget Sets
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
