Metadata-Version: 2.1
Name: django-airports-legacy
Version: 0.2.6
Summary:  It's like django-cities, but django-airports 
Home-page: https://github.com/vlinhart/django-airports-legacy
Author: Antonio Ercole De Luca
Author-email: eracle@posteo.eu
License: MIT
Keywords: django-airports-legacy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.8
License-File: LICENSE
License-File: AUTHORS.rst

=============================
django-airports-legacy
=============================

Quickstart
----------
Requirements (Ubuntu 16.04)::

    sudo apt-get install -y libsqlite3-mod-spatialite binutils libproj-dev gdal-bin

Install django-airports-legacy::

    pip install django-airports-legacy

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'cities',
        'airports',
        'django.contrib.gis',
        ...
    )


Features
--------

The ```airports``` manage command has options, see ```airports --help``` output.
Second run will update the DB with the latest data from the source csv file.

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Make a package
--------------

::
    python setup.py sdist bdist_wheel
    twine check dist/*
    twine upload dist/*




History
-------

0.2.5 (2022-01-03)
++++++++++++++++++

* upstream django-cities-legacy==0.6.1 requirement
* django 4 support

0.2.2 (2020-10-01)
++++++++++++++++++

* upstream django-cities==0.6 requirement
* better doc on installation


0.2.1 (2019-12-17)
++++++++++++++++++

* compatibility with Django 3.0


0.2 (2019-09-15)
++++++++++++++++

* renaming and uploading to Pypi



0.1.5 (2018-03-08)
++++++++++++++++++

* creation of the HISTORY.rst file;


