Metadata-Version: 1.1
Name: hapydeis
Version: 0.0.2.dev3
Summary: A python client for Deis clusters.
Home-page: UNKNOWN
Author: nassim.babaci
Author-email: nassim.babaci@cloudreach.co.uk
License: UNKNOWN
Description: ===========
        Hapydeis
        ===========
        
        A Python thin wrapper around deis api, for now only provide a level 0 client (which should be improved with a couple
        of new features quite soon)
        
        Installation
        ============
        
        ::
        
            pip install git+https://github.com/Grindizer/hapydeis#egg=hapydeis
        
        Or in a develop mode after downloading a zip or cloning the git repository ::
        
            git clone https://github.com/Grindizer/hapydeis
            cd hapydeis
            pip install -e .
        
        Or in a develop mode from a git repository ::
        
            pip install -e git+https://github.com/Grindizer/hapydeis#egg=hapydeis
        
        Usage
        =====
        
        ::
        
            from hapydeis import Client
            mycluster = Client('http://deis.mycluster.example.com')
            mycluster.authenticate('user', 'just an example here')
            list_apps = mycluster.apps.get()
        
        Development
        ===========
        
        To run the all tests run ::
        
            py.test
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
