Metadata-Version: 2.1
Name: pyfb-did
Version: 1.0.2
Summary: Your project description goes here
Home-page: https://github.com/mwolff44/pyfb-did
Author: Mathias WOLFF
Author-email: mathias@celea.org
License: MIT
Keywords: pyfb-did
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django-model-utils (>=2.0)
Requires-Dist: djangorestframework (>=3.7.7)
Requires-Dist: django-crispy-forms (>=1.7.0)
Requires-Dist: pyfb-endpoint (>=0.9.0)
Requires-Dist: pyfb-company (>=0.9.0)
Requires-Dist: django-migrate-sql-deux

=============================
pyfb-did
=============================

.. image:: https://badge.fury.io/py/pyfb-did.svg
    :target: https://badge.fury.io/py/pyfb-did

.. image:: https://travis-ci.org/mwolff44/pyfb-did.svg?branch=master
    :target: https://travis-ci.org/mwolff44/pyfb-did

.. image:: https://codecov.io/gh/mwolff44/pyfb-did/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/mwolff44/pyfb-did

Your project description goes here

Documentation
-------------

The full documentation is at https://pyfb-did.readthedocs.io.

Quickstart
----------

Install pyfb-did::

    pip install pyfb-did

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'pyfb_did.apps.PyfbDidConfig',
        ...
    )

Add pyfb-did's URL patterns:

.. code-block:: python

    from pyfb_did import urls as pyfb_did_urls


    urlpatterns = [
        ...
        url(r'^', include(pyfb_did_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

1.0.2 (2019-06-26)
++++++++++++++++++

* Add dependencies for migration

1.0.1 (2019-05-23)
++++++++++++++++++

* Add domain in SQL view

1.0.0 (2019-01-30)
++++++++++++++++++

* SQL view for kamailio

0.9.0 (2018-12-07)
++++++++++++++++++

* First release on PyPI.


