Skip to content

Commit

Permalink
Merge pull request #23 from yakky/feature/update_docs
Browse files Browse the repository at this point in the history
Update README / classifiers
  • Loading branch information
yakky committed Jan 24, 2016
2 parents d690b5a + b2dcc20 commit ffbc60d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
19 changes: 11 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


INSTALL_REQUIRES = [
'django>=1.2',
'django>=1.6',
]

CLASSIFIERS = [
Expand All @@ -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',
]

Expand Down

0 comments on commit ffbc60d

Please sign in to comment.