Commit dfe2a97a authored by Jannis Leidel's avatar Jannis Leidel Committed by Sean Bleier

Added myself to authors and updated setup file. Bumped to 0.2a2.

parent 18e591e4
Sean Bleier <http://github.com/sebleier> Sean Bleier <http://github.com/sebleier>
Matt Dennewitz <http://github.com/blackbrrr> Matt Dennewitz <http://github.com/blackbrrr>
Jannis Leidel <http://github.com/jezdez>
Forked from http://github.com/sebleier/django-redis-cache Forked from http://github.com/sebleier/django-redis-cache
\ No newline at end of file
#!/usr/bin/env python
from distutils.core import setup from distutils.core import setup
version = "0.2a1"
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
]
setup( setup(
name = "django-redis-cache", name = "django-redis-cache",
version = version,
url = "http://github.com/blackbrrr/django-redis-cache/", url = "http://github.com/blackbrrr/django-redis-cache/",
author = "Matt Dennewitz", author = "Matt Dennewitz",
author_email = "mattdennewitz@gmail.com", author_email = "mattdennewitz@gmail.com",
version = "0.2a2",
packages = ["redis_cache"], packages = ["redis_cache"],
description = "Redis Cache Backend for Django", description = "Redis Cache Backend for Django",
classifiers = classifiers classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
],
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment