Metadata-Version: 1.1
Name: django-webix
Version: 0.1
Summary: UNKNOWN
Home-page: https://github.com/MPASolutions/django-webix
Author: MPA Solutions
Author-email: info@mpasol.it
License: GNU GPLv3 License
Description: .. _Webix: https://webix.com
        
        Django Webix
        ============
        
        Use the Webix_ JavaScript UI library with Django
        
        Documentation
        -------------
        
        The full documentation is at https://django-webix.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django Webix:
        
        .. code-block:: bash
        
            $ pip install django-webix
        
        Add ``django-webix`` to your ``INSTALLED_APPS``
        
        .. code-block:: python
        
            INSTALLED_APPS = [
                # ...
                'django_webix',
                # ...
            ]
        
        Add ``django-webix`` URLconf to your project ``urls.py`` file
        
        .. code-block:: python
        
            from django.conf.urls import url, include
        
            urlpatterns = [
                # ...
                url(r'^django-webix/', include('django_webix.urls')),
                # ...
            ]
        
        Include ``webix static files`` folder in your django staticfiles folder as ``webix``
        
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        .. code-block:: bash
        
            $ source <YOURVIRTUALENV>/bin/activate
            $ (myenv) $ pip install tox
            $ (myenv) $ tox
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
