Metadata-Version: 1.1
Name: django-intlekt
Version: 0.2
Summary: Django app for Intlekt, a content curation application using the IEML language.
Home-page: https://github.com/IEMLdev/django-intlekt
Author: Vincent Lefoulon
Author-email: vincent.lefoulon@free.fr
License: GPLv3
Description: # Django Intlekt
        
        A Django app for Intlekt, the content curation application using the IEML language.
        
        ## Install
        
        Requirements:
        
        * MongoDB **3.2** (can be installed with Docker)
        
        ```
        pip install django-intlekt
        ```
        
        ```python
        # django_project/settings.py
        
        INSTALLED_APPS = [
            # ...
            'rest_framework',
            'rest_framework_mongoengine',
            # These are for cross-origin requests
            # 'rest_framework.authtoken',
            # 'corsheaders',
            'django_intlekt',
        ]
        
        from mongoengine import connect
        connect(...)  # See http://docs.mongoengine.org/guide/connecting.html
        ```
        
        ```python
        # django_project/urls.py
        
        from django.conf.urls import url, include
        
        urlpatterns = [
            url(r'^', include('django_intlekt.urls')),  # TODO: customize the route
            # ...
        ]
        ```
        
Keywords: ieml intlekt semantic syntax language indexing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Text Processing :: Indexing
