Metadata-Version: 1.2
Name: zenaton
Version: 0.1.3
Summary: Zenaton client library
Home-page: https://zenaton.com/
Author: Zenaton
Author-email: contact@zenaton.com
License: Apache License, Version 2.0
Description: Zenaton client library
        ======================
        
        This is the official Python client library for Zenaton (https://zenaton.com/).
        
        .. image:: https://travis-ci.org/zenaton/zenaton-python.svg?branch=master
            :target: https://travis-ci.org/zenaton/zenaton-python
        
        
        Requirements
        ------------
        
        Supported Python versions are 2.7 and 3.3+.
        
        
        Installing
        ----------
        
        Install the latest stable release using ``pip``:
        
        .. code-block:: shell
        
            $ pip install zenaton
        
        Alternatively, you can install the latest development version from GitHub:
        
        .. code-block:: shell
        
            $ pip install -e git+https://github.com/zenaton/zenaton-python.git#egg=zenaton
        
        
        Getting started
        ---------------
        
        #) In a first terminal, download and start the Zenaton worker:
        
           .. code-block:: shell
        
            $ cd /path/to/my/project
            $ curl -O https://zenaton.com/dist/zenaton_worker
            $ chmod +x zenaton_worker
            $ ./zenaton_worker
        
        #) In another terminal, create a `virtualenv`_ for your project
           and activate it:
        
           .. code-block:: shell
        
              $ cd /path/to/my/project
              $ virtualenv venv
              $ source venv/bin/activate
        
        #) Get the Zenaton Python examples:
        
           .. code-block:: shell
        
              $ git clone https://github.com/zenaton/examples-python.git
              $ cd examples-python
              $ pip install -e .
        
        #) Go to your Zenaton `dashboard`_ to get your application ID and an API token:
        
           .. code-block:: shell
        
              $ export ZENATON_APP_ID=<your application id>
              $ export ZENATON_API_TOKEN=<your api token>
              $ export ZENATON_APP_ENV=dev
        
        #) Send the config to the Zenaton worker:
        
           .. code-block:: shell
        
              $ zenaton_init
        
        #) Launch an example:
        
           .. code-block:: shell
        
              $ python zenaton_examples/launch_sequential.py
        
        .. _dashboard: https://zenaton.com/app/api
        .. _virtualenv: https://virtualenv.pypa.io/
        
        0.1.2 (unreleased)
        ------------------
        
        - Nothing changed yet.
        
        
        0.1.1 (2017-09-08)
        ------------------
        
        - Improved packaging
        
        
        0.1.0 (2017-09-08)
        ------------------
        
        - Initial release
        
Keywords: w,o,r,k,f,l,o,w, ,t,a,s,k,s, ,q,u,e,u,e, ,o,r,c,h,e,s,t,r,a,t,i,o,n, ,s,c,h,e,d,u,l,i,n,g
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
