Metadata-Version: 1.1
Name: leonardo-geo
Version: 2015.5.0
Summary: Leonardo widgets related with Geolocation
Home-page: https://github.com/leonardo-modules/leonardo-geo.git
Author: Michael Kuty
Author-email: kutymichael@gmail.com
License: UNKNOWN
Description: ====================
        Leonardo Geo Widgets
        ====================
        
        Leonardo widgets related with Geo such as Google Map Widget or photo gallery with Geolocation etc..
        
        .. contents::
            :local:
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip install leonardo_geo
        
        or as leonardo bundle
        
        .. code-block:: bash
        
            pip install django-leonardo["geo"]
        
        Add ``leonardo_geo`` to APPS list, in the ``local_settings.py``::
        
            APPS = [
                ...
                'leonardo_geo'
                ...
            ]
        
        Load new template to db
        
        .. code-block:: bash
        
            python manage.py sync_all
        
        Optional Dependencies
        ---------------------
        
        For advance widgets and features this module use GeoDjango_ is used so a spatial database is required.  We recommend PostGIS. Django's docs include some `installation instructions`_ although it is renowned for being tricky.
        
        .. _GeoDjango: https://docs.djangoproject.com/en/1.4/ref/contrib/gis
        .. _`installation instructions`: https://docs.djangoproject.com/en/1.4/ref/contrib/gis/install
        
        Spatialite is another option although it can be tricky to set up.  On Ubuntu,
        you can do the following:
        
        .. code:: bash
        
            $ sudo apt-get install spatialite-bin libspatialite3 libgeos++-dev libgdal-dev libproj0
        
        The ``pysqlite`` python package is also required although it doesn't support C
        extensions by default.  To work-around this, there are two options:
        
        1. Download the package, edit ``setup.cfg`` to enable C extensions and install:
        
        .. code:: bash
        
            $ pip install pysqlite --no-install
            $ vim $VIRTUAL_ENV/build/pysqlite/setup.cfg
            $ pip install pysqlite
        
        2. Use a custom branch:
        
        .. code:: bash
        
           $ pip install git+git://github.com/tinio/pysqlite.git@extension-enabled#egg=pysqlite
        
        .. _`pysqlite`: http://code.google.com/p/pysqlite
        
        
        Read More
        ---------
        
        * https://github.com/django-leonardo
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
