Metadata-Version: 1.1
Name: restible-django
Version: 0.1.1
Summary: Django integration for restible library
Home-page: http://github.com/novopl/restible-django
Author: Mateusz 'novo' Klos
Author-email: novopl@gmail.com
License: MIT
Description: 
        restible-django
        ###############
        
        .. readme_inclusion_marker
        
        **restible-django** is a library that provides **django** integration with
        `restible <https://github.com/novopl/restible>`_. It includes the base resource
        class ``DjangoResource`` that can be used to define REST resources based on
        django model definitions along with ``DjangoEndpoint`` class that integrates
        `restible <https://github.com/novopl/restible>`_ with django routing.
        
        
        .. note::
            The CircleCI builds can be found
            `here <https://circleci.com/gh/novopl/restible-django>`_
        
        Installation
        ============
        
        .. code-block:: shell
        
            $ pip install restible-django
        
        
        Contributing
        ============
        
        Setting up development repo
        ---------------------------
        
        .. code-block:: shell
        
            $ git clone git@github.com:novopl/restible-django.git
            $ cd restible-django
            $ virtualenv env
            $ source ./env/bin/activate
            # python setup.py develop
            $ pip install -r ops/devrequirements.txt
            $ peltak git add-hooks
        
        
        Running tests
        .............
        
        **Config**: The types of tests are defined in ``pelconf.py`` and the
        pytest configuration is defined in ``ops/tools/pytest.ini``.
        
        .. code-block:: shell
        
            $ peltak test
        
        Linting
        .......
        
        **Config**: The list of locations to lint is defined in ``pelconf.py`` and the
        linters configuration is defined in ``ops/tools/{pylint,pep8}.ini``.
        
        .. code-block:: shell
        
            $ peltak lint
        
        Generating docs
        ...............
        
        **Config**: The list of documented files and general configuration is in
        ``pelconf.py`` and the Sphinx configuration is defined in ``docs/conf.py``.
        
        .. code-block:: shell
        
            $ peltak docs
        
Keywords: restible REST restapi rest server
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Utilities
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
