Metadata-Version: 2.1
Name: django-geostore
Version: 0.3.1
Summary: Django geographic store and vector tile generation
Home-page: https://github.com/Terralego/django-geostore.git
Author: Makina Corpus
Author-email: terralego-pypi@makina-corpus.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: django (<3.0,>=2.1)
Requires-Dist: djangorestframework (>=3.8)
Requires-Dist: djangorestframework-gis (>=0.14)
Requires-Dist: drf-yasg (>=1.9)
Requires-Dist: packaging
Requires-Dist: deepmerge
Requires-Dist: requests (>=2.19)
Requires-Dist: mercantile (>=1.0)
Requires-Dist: psycopg2 (>=2.7)
Requires-Dist: Fiona (>=1.7)
Requires-Dist: Pillow (>=5.3.0)
Requires-Dist: jsonschema (>=3.0)
Provides-Extra: dev
Requires-Dist: factory-boy ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'

[![Build Status](https://travis-ci.org/Terralego/django-geostore.svg?branch=master)](https://travis-ci.org/Terralego/django-geostore/)
[![codecov](https://codecov.io/gh/Terralego/django-geostore/branch/master/graph/badge.svg)](https://codecov.io/gh/Terralego/django-geostore)
[![Maintainability](https://api.codeclimate.com/v1/badges/74b0d8430ff982633ee7/maintainability)](https://codeclimate.com/github/Terralego/django-geostore/maintainability)
[![Documentation Status](https://readthedocs.org/projects/django-geostore/badge/?version=latest)](https://django-geostore.readthedocs.io/en/latest/?badge=latest)

![Python Version](https://img.shields.io/badge/python-%3E%3D%203.6-blue.svg)
![Django Version](https://img.shields.io/badge/django-%3E%3D%202.1%2C<3.0-blue.svg)
![Rest Version](https://img.shields.io/badge/django--rest--framework-%3E%3D%203.8.0-blue)

# BACKWARD compatibility

## settings to add :

```python
import os

....

MEDIA_ACCEL_REDIRECT = os.getenv('MEDIA_ACCEL_REDIRECT', default="False") == "True"
HOSTNAME = os.environ.get('HOSTNAME', '')

```


=========
CHANGELOG
=========

0.3.1      (2019-09-11)
-----------------------

### Breaking Changes

* App name move from terra to geostore. Structure is the same, so backup and restore your data


0.3.0      (2019-09-09)
-----------------------

First public tag

* Terra app extracted from terracommon.terra


