Updated version number and setup requirements

This commit is contained in:
Justin Driscoll 2009-02-04 17:28:30 -05:00
parent a0cd5c5774
commit 54903c7e77
2 changed files with 4 additions and 4 deletions

View file

@ -3,10 +3,10 @@
Django ImageKit
Author: Justin Driscoll <justin.driscoll@gmail.com>
Version: 1.0
Version: 0.2
"""
VERSION = (1, 0, 'pre')
VERSION = "0.2"

View file

@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name='django-imagekit',
version='0.1',
version='0.2',
description='Automated image processing for Django models.',
author='Justin Driscoll',
author_email='justin.driscoll@gmail.com',
@ -24,5 +24,5 @@ setup(
zip_safe=False,
# Tells setuptools to download setuptools_git before running setup.py so
# it can find the data files under Hg version control.
setup_requires=['hg.setuptools'],
setup_requires=['setuptools_hg'],
)