2009-02-02 20:46:41 +00:00
|
|
|
#/usr/bin/env python
|
2011-09-12 20:03:28 +00:00
|
|
|
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()
|
2011-02-10 22:24:11 +00:00
|
|
|
|
2009-02-02 20:46:41 +00:00
|
|
|
setup(
|
|
|
|
|
name='django-imagekit',
|
2011-09-12 20:03:28 +00:00
|
|
|
version=imagekit.__version__,
|
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',
|
2011-02-12 22:05:15 +00:00
|
|
|
maintainer='Bryan Veloso',
|
|
|
|
|
maintainer_email='bryan@revyver.com',
|
|
|
|
|
license='BSD',
|
2011-02-10 22:24:11 +00:00
|
|
|
url='http://github.com/jdriscoll/django-imagekit/',
|
|
|
|
|
packages=[
|
2011-02-11 09:27:10 +00:00
|
|
|
'imagekit',
|
|
|
|
|
'imagekit.management',
|
|
|
|
|
'imagekit.management.commands'
|
2011-02-10 22:24:11 +00:00
|
|
|
],
|
2009-02-02 20:46:41 +00:00
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
|
'Environment :: Web Environment',
|
2011-04-01 19:26:17 +00:00
|
|
|
'Framework :: Django',
|
2009-02-02 20:46:41 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Operating System :: OS Independent',
|
2011-04-01 19:26:17 +00:00
|
|
|
'Programming Language :: Python :: 2.5',
|
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2011-02-10 22:24:11 +00:00
|
|
|
'Topic :: Utilities'
|
|
|
|
|
]
|
2009-02-02 20:46:41 +00:00
|
|
|
)
|