Metadata-Version: 1.1
Name: django-easydata
Version: 0.1
Summary: A Django app to publish your project data using ontologies.
Home-page: UNKNOWN
Author: Jose Manuel Llerena
Author-email: jose.llerecarmo@alum.uca.es
License: GNU License
Description: ========
        EasyData
        ========
        
        EasyData is an app to publish your model's data using the available ontologies,
        with a graphical interface to configure.
        
        Quick start
        -----------
        
        1. Add "easydata" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'easydata',
            )
        
        2. Include the easydata urls in your project urls.py like this::
        
            url(r'^easydata/', include('easydata.urls')),
        
        3. Run 'python manage.py syncdb' to create the easydata models.
        
        4. Run the script 'python manage.py loadmodels' to resolve the models and fields
           of your project.
        
        5. Run your test server and visit http://127.0.0.1:8000/easydata/ to access to
           the application.
        
Keywords: ontology,rdf,rdfa,semantic web,django,microdata
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
