Making versioning a little easier on myself.

This commit is contained in:
Bryan Veloso 2011-09-12 13:03:28 -07:00
parent e295c9c039
commit df93146049
2 changed files with 20 additions and 9 deletions

View file

@ -1,11 +1,13 @@
"""
Django ImageKit
Author: Justin Driscoll <justin.driscoll@gmail.com>
Version: 0.4.0
:author: Justin Driscoll <justin.driscoll@gmail.com>
:maintainer: Bryan Veloso <bryan@revyver.com>
:license: BSD
"""
__title__ = 'django-imagekit'
__version__ = '0.4.1'
__build__ = 0x000400
__author__ = 'Justin Driscoll, Bryan Veloso, Greg Newman, Chris Drackett'
__version__ = (0, 4, 0)
__license__ = 'BSD'

View file

@ -1,9 +1,20 @@
#/usr/bin/env python
from distutils.core import setup
import os
import sys
import imagekit
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if 'publish' in sys.argv:
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='django-imagekit',
version='0.4.0',
version=imagekit.__version__,
description='Automated image processing for Django models.',
author='Justin Driscoll',
author_email='justin@driscolldev.com',
@ -29,5 +40,3 @@ setup(
'Topic :: Utilities'
]
)