From b2dcc20dbb08d5b880ff596a2871a60eaa99a9e5 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Sun, 24 Jan 2016 06:49:35 +0100 Subject: [PATCH] Update README / classifiers --- README.rst | 19 +++++++++++-------- setup.py | 8 +++++++- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index 875d257..3d8f3b0 100644 --- a/README.rst +++ b/README.rst @@ -2,27 +2,27 @@ Django Statictemplate ##################### -.. image:: https://pypip.in/version/django-statictemplate/badge.png +.. image:: https://img.shields.io/pypi/v/django-statictemplate.svg?style=flat-square :target: https://pypi.python.org/pypi/django-statictemplate/ :alt: Latest Version -.. image:: https://travis-ci.org/yakky/django-statictemplate.svg - :target: https://travis-ci.org/yakky/django-statictemplate +.. image:: https://img.shields.io/travis/ojii/django-statictemplate.svg?style=flat-square + :target: https://travis-ci.org/ojii/django-statictemplate :alt: Travis status -.. image:: https://coveralls.io/repos/yakky/django-statictemplate/badge.png - :target: https://coveralls.io/r/yakky/django-statictemplate +.. image:: https://img.shields.io/coveralls/ojii/django-statictemplate.svg?style=flat-square + :target: https://coveralls.io/r/ojii/django-statictemplate :alt: Coveralls status -.. image:: https://pypip.in/download/django-statictemplate/badge.png +.. image:: https://img.shields.io/pypi/dm/django-statictemplate.svg?style=flat-square :target: https://pypi.python.org/pypi//django-statictemplate/ :alt: Download -.. image:: https://pypip.in/wheel/django-statictemplate/badge.png +.. image:: https://img.shields.io/pypi/wheel/django-statictemplate.svg?style=flat-square :target: https://pypi.python.org/pypi/django-statictemplate/ :alt: Wheel Status -.. image:: https://pypip.in/license/django-statictemplate/badge.png +.. image:: https://img.shields.io/pypi/l/django-statictemplate.svg?style=flat-square :target: https://pypi.python.org/pypi/django-statictemplate/ :alt: License @@ -38,6 +38,9 @@ whatsoever in it. Note that this means that every time you change your error pages, you need to re-run this script. Ideally this is part of your deploy process. +**Supported Django versions: 1.6, 1.7, 1.8, 1.9** + +For older versions use ``django-statictemplate==2.0.1`` ************ Installation diff --git a/setup.py b/setup.py index da52a4b..85315d8 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ INSTALL_REQUIRES = [ - 'django>=1.2', + 'django>=1.6', ] CLASSIFIERS = [ @@ -15,11 +15,17 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', + 'Framework :: Django', + 'Framework :: Django :: 1.6', + 'Framework :: Django :: 1.7', + 'Framework :: Django :: 1.8', + 'Framework :: Django :: 1.9', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Software Development', ]