Metadata-Version: 1.1
Name: renga
Version: 0.1.0.dev20170913
Summary: Python API and CLI for the Renga platform.
Home-page: https://github.com/SwissDataScienceCenter/renga-python
Author: Swiss Data Science Center
Author-email: contact@datascience.ch
License: Apache License 2.0
Description: ..
            Copyright 2017 - Swiss Data Science Center (SDSC)
            A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and
            Eidgenössische Technische Hochschule Zürich (ETHZ).
        
            Licensed under the Apache License, Version 2.0 (the "License");
            you may not use this file except in compliance with the License.
            You may obtain a copy of the License at
        
                http://www.apache.org/licenses/LICENSE-2.0
        
            Unless required by applicable law or agreed to in writing, software
            distributed under the License is distributed on an "AS IS" BASIS,
            WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
            See the License for the specific language governing permissions and
            limitations under the License.
        
        ======================
         Renga SDK for Python
        ======================
        
        .. image:: https://img.shields.io/travis/SwissDataScienceCenter/renga-python.svg
           :target: https://travis-ci.org/SwissDataScienceCenter/renga-python
        
        .. image:: https://img.shields.io/coveralls/SwissDataScienceCenter/renga-python.svg
           :target: https://coveralls.io/r/SwissDataScienceCenter/renga-python
        
        .. image:: https://img.shields.io/github/tag/SwissDataScienceCenter/renga-python.svg
           :target: https://github.com/SwissDataScienceCenter/renga-python/releases
        
        .. image:: https://img.shields.io/pypi/dm/renga.svg
           :target: https://pypi.python.org/pypi/renga
        
        .. image:: https://img.shields.io/github/license/SwissDataScienceCenter/renga-python.svg
                :target: https://github.com/SwissDataScienceCenter/renga-python/blob/master/LICENSE
        
        A Python library for the `Renga collaborative data science platform
        <https://github.com/SwissDataScienceCenter/renga>`_. It lets you perform any action with
        ``renga`` command or from withing Python apps - create projects, manage
        buckets, track files, run containers, etc.
        
        **This is an experimental developer preview release.**
        
        Installation
        ------------
        
        The latest release is available on PyPI and can be installed using
        ``pip``:
        
        ::
        
            $ pip install renga
        
        The development version can be installed directly from the Git repository:
        
        ::
        
            $ pip install -e git+https://github.com/SwissDataScienceCenter/renga-python.git#egg=renga
        
        
        Usage
        -----
        
        Start by login and configuring your shell:
        
        ::
        
           $ renga login http://localhost
           $ eval "$(renga env)"
        
        Connect to Renga platform from Python using the configuration in your
        environment:
        
        ::
        
            import renga
            client = renga.from_env()
        
        Further documentation is available on
        https://renga-python.readthedocs.io/
        
        
        ..
            Copyright 2017 - Swiss Data Science Center (SDSC)
            A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and
            Eidgenössische Technische Hochschule Zürich (ETHZ).
        
            Licensed under the Apache License, Version 2.0 (the "License");
            you may not use this file except in compliance with the License.
            You may obtain a copy of the License at
        
                http://www.apache.org/licenses/LICENSE-2.0
        
            Unless required by applicable law or agreed to in writing, software
            distributed under the License is distributed on an "AS IS" BASIS,
            WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
            See the License for the specific language governing permissions and
            limitations under the License.
        
        Changes
        =======
        
        Version 0.1.0 (released TBD)
        
        - Initial public release.
        
Keywords: Renga CLI
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Development Status :: 1 - Planning
