Metadata-Version: 1.1
Name: pyfb-endpoint
Version: 1.1.1
Summary: Endpoint app for PyFreeBilling
Home-page: https://www.pyfreebilling.com
Author: Mathias WOLFF
Author-email: mathias@celea.org
License: MIT
Description: =============================
        pyfb-endpoint
        =============================
        
        .. image:: https://badge.fury.io/py/pyfb-endpoint.svg
            :target: https://badge.fury.io/py/pyfb-endpoint
        
        .. image:: https://travis-ci.org/mwolff44/pyfb-endpoint.svg?branch=master
            :target: https://travis-ci.org/mwolff44/pyfb-endpoint
        
        .. image:: https://codecov.io/gh/mwolff44/pyfb-endpoint/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/mwolff44/pyfb-endpoint
        
        Endpoint app for PyFreeBilling
        
        Documentation
        -------------
        
        The full documentation is at https://pyfb-endpoint.readthedocs.io.
        
        Quickstart
        ----------
        
        Install pyfb-endpoint::
        
            pip install pyfb-endpoint
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'pyfb_endpoint.apps.PyfbEndpointConfig',
                ...
            )
        
        Add pyfb-endpoint's URL patterns:
        
        .. code-block:: python
        
            from pyfb_endpoint import urls as pyfb_endpoint_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(pyfb_endpoint_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.1.0 (2020-03-21)
        ++++++++++++++++++
        
        * Change min and max django version
        * New feature to add a + before the callerID in gateway for outbound calls
        
        1.0.1 (2019-07-10)
        ++++++++++++++++++
        
        * Add provider registration feature
        
        1.0.0 (2019-05-23)
        ++++++++++++++++++
        
        * Add domain to customer endpoint
        
        0.9.3 (2019-04-10)
        ++++++++++++++++++
        
        * Add P-Preferred-Identity SIP header management for provider and customer endpoint.
        
        0.9.2 (2019-01-30)
        ++++++++++++++++++
        
        * SQL views for Kamailio.
        * French and spanish translations
        
        0.9.1 (2018-12-20)
        ++++++++++++++++++
        
        * Bug : typo in dependencies on PyPI.
        
        0.9.0 (2018-12-07)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: pyfb-endpoint
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django :: 2.2
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
