Metadata-Version: 2.0
Name: stacks-image
Version: 0.1.1
Summary: A Stacks application for handling images and lists of images.
Home-page: http://stacks.wgbhdigital.org/
Author: Jonathan Ellenberger
Author-email: jonathan_ellenberger@wgbh.org
License: MIT License, see LICENSE
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: django-versatileimagefield (>=1.0.2)
Requires-Dist: django-textplusstuff (>=0.4)
Requires-Dist: stacks-page (>=0.1.1)

# Stacks Image

A Stacks application for handling images and lists of images.

## Dependencies

* `stacks-page` >= 0.1.1
* `django-versatileimagefield` >= 1.0.2
* `django-textplusstuff` >= 0.4

## Release Notes

### 0.1.1

* Including templates in PyPI release.

### 0.1

* Initial open source release

## Running Tests

All commands below are run from within the `stacks-image` outer folder of this repo.

First create a new virtual environment and install the test requirements:

    $ pip install -r test_requirements.txt

Before running tests, first ensure this app passes a `flake8` linter check:

    $ flake8 stacks_image

Run the test suite with this command:

    $ coverage run --source=stacks_image runtests.py

See test coverage with this command:

    $ coverage report -m


