2009-02-02 20:46:41 +00:00
|
|
|
#/usr/bin/env python
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='django-imagekit',
|
2010-04-26 14:40:24 +00:00
|
|
|
version='0.3.3',
|
2009-02-02 20:46:41 +00:00
|
|
|
description='Automated image processing for Django models.',
|
|
|
|
|
author='Justin Driscoll',
|
2009-05-17 03:08:12 +00:00
|
|
|
author_email='justin@driscolldev.com',
|
2009-02-02 20:46:41 +00:00
|
|
|
url='http://bitbucket.org/jdriscoll/django-imagekit/',
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Framework :: Django',
|
|
|
|
|
],
|
|
|
|
|
# Make setuptools include all data files under version control,
|
|
|
|
|
# svn and CVS by default
|
|
|
|
|
include_package_data=True,
|
|
|
|
|
zip_safe=False,
|
|
|
|
|
# Tells setuptools to download setuptools_git before running setup.py so
|
|
|
|
|
# it can find the data files under Hg version control.
|
2009-02-04 22:28:30 +00:00
|
|
|
setup_requires=['setuptools_hg'],
|
2009-02-02 20:46:41 +00:00
|
|
|
)
|