Metadata-Version: 2.1
Name: django-filestack
Version: 0.4.0
Summary: Add Model support for Filestack files
Home-page: https://github.com/exolever/django-filestack
Author: Tomas
Author-email: tomas@openexo.com
License: BSD
Keywords: django-filestack
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 Filestack
=============================

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

.. image:: https://requires.io/github/exolever/django-filestack/requirements.svg?branch=master
     :target: https://requires.io/github/exolever/django-filestack/requirements/?branch=master
     :alt: Requirements Status

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

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

.. image:: https://sonarcloud.io/api/project_badges/measure?project=exolever_django-filestack&metric=alert_status
   :target: https://sonarcloud.io/dashboard?id=exolever_django-filestack

Add Model support for Filestack files

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

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

Quickstart
----------

Install Django Filestack::

    pip install django-filestack

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'files.apps.FilesConfig',
        ...
    )

Add Django Filestack's URL patterns:

.. code-block:: python

    from files import urls as files_urls


    urlpatterns = [
        ...
        url(r'^', include(files_urls)),
        ...
    ]

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.1.0 (2019-03-24)
++++++++++++++++++

* First release on PyPI.


