Metadata-Version: 1.2
Name: pyk8sver
Version: 1.0
Summary: Get k8s version from github
Home-page: https://github.com/sierrezinal/pyk8sver
Author: Gavin Bong
Author-email: rubycoder@gmail.com
Maintainer: Gavin Bong
Maintainer-email: rubycoder@gmail.com
License: UNKNOWN
Description: =========================
        pyk8sver 
        =========================
        
        *pyk8sver* returns the latest version of kubernetes
        
        Requirements
        ============
        
        TBD
        
        Setup
        =====
        
        * If you want to run the test cases, do this extra step
        
        .. sourcecode:: bash
        
            pip install -r requirements-dev.txt
        
        * Install the package:
        
        .. sourcecode:: bash
        
            python setup.py develop
        
        * (Optional) Run all tests:
        
        .. sourcecode:: bash
        
            $ paver test_all
            ======================== 112 passed, 2 xfailed in 2.01 seconds
             ___  _   ___ ___ ___ ___
            | _ \/_\ / __/ __| __|   \
            |  _/ _ \\__ \__ \ _|| |) |
            |_|/_/ \_\___/___/___|___/
        
        Example
        =======
        
        .. sourcecode:: python
        
             from pyk8sver import app
             o = app.Kubernetes('your-github-access-token')
             releases = o.fetch_releases()
             print("Latest is {0}".format(releases[0])) # GitRelease(title="v1.13.2")
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Software Distribution
