mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Making versioning a little easier on myself.
This commit is contained in:
parent
e295c9c039
commit
df93146049
2 changed files with 20 additions and 9 deletions
|
|
@ -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'
|
||||
|
|
|
|||
17
setup.py
17
setup.py
|
|
@ -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'
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue