Metadata-Version: 2.1
Name: django-ftl
Version: 0.0.1
Summary: Django bindings for 'fluent', the localization system for today's world.
Home-page: https://github.com/django-ftl/django-ftl
Author: Luke Plant
Author-email: L.Plant.98@cantab.net
License: MIT
Keywords: django-ftl
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
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

=============================
django-ftl
=============================

.. image:: https://badge.fury.io/py/django-ftl.svg
    :target: https://badge.fury.io/py/django-ftl

.. image:: https://travis-ci.org/django-ftl/django-ftl.svg?branch=master
    :target: https://travis-ci.org/django-ftl/django-ftl

.. image:: https://codecov.io/gh/django-ftl/django-ftl/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/django-ftl/django-ftl

Django bindings for 'fluent', the localization system for today's world.

Documentation
-------------

The full documentation is at https://django-ftl.readthedocs.io.

Quickstart
----------

Install django-ftl::

    pip install django-ftl

Add it to your ``INSTALLED_APPS``:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'django_ftl.apps.DjangoFtlConfig',
        ...
    )

Features
--------

* TODO

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

Does the code actually work?

::

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


Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.0.1 (2018-05-19)
++++++++++++++++++

* First release on PyPI - empty placeholder package


