2009-02-02 20:46:41 +00:00
|
|
|
#/usr/bin/env python
|
2011-10-31 14:32:39 +00:00
|
|
|
import codecs
|
2011-09-12 20:03:28 +00:00
|
|
|
import os
|
|
|
|
|
import sys
|
|
|
|
|
|
2011-10-31 14:01:41 +00:00
|
|
|
from setuptools import setup, find_packages
|
2011-09-12 20:03:28 +00:00
|
|
|
|
|
|
|
|
if 'publish' in sys.argv:
|
|
|
|
|
os.system('python setup.py sdist upload')
|
|
|
|
|
sys.exit()
|
2011-02-10 22:24:11 +00:00
|
|
|
|
2011-10-31 14:32:39 +00:00
|
|
|
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
|
|
|
|
|
|
2009-02-02 20:46:41 +00:00
|
|
|
setup(
|
|
|
|
|
name='django-imagekit',
|
2011-10-31 14:01:41 +00:00
|
|
|
version=':versiontools:imagekit:',
|
2009-02-02 20:46:41 +00:00
|
|
|
description='Automated image processing for Django models.',
|
2011-10-31 14:32:39 +00:00
|
|
|
long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')),
|
2009-02-02 20:46:41 +00:00
|
|
|
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/',
|
2011-10-31 14:01:41 +00:00
|
|
|
packages=find_packages(),
|
2011-11-02 04:40:51 +00:00
|
|
|
zip_safe=False,
|
|
|
|
|
include_package_data=True,
|
2009-02-02 20:46:41 +00:00
|
|
|
classifiers=[
|
2012-03-20 09:39:36 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2009-02-02 20:46:41 +00:00
|
|
|
'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'
|
2011-10-31 14:01:41 +00:00
|
|
|
],
|
2009-02-02 20:46:41 +00:00
|
|
|
)
|