django-imagekit/setup.py

52 lines
1.5 KiB
Python
Raw Normal View History

#/usr/bin/env python
import codecs
import os
import sys
from setuptools import setup, find_packages
if 'publish' in sys.argv:
os.system('python setup.py sdist upload')
sys.exit()
2011-02-10 22:24:11 +00:00
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
# Dynamically calculate the version based on imagekit.VERSION.
version = __import__('imagekit').get_version()
setup(
name='django-imagekit',
version=version,
description='Automated image processing for Django models.',
long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')),
author='Justin Driscoll',
2009-05-17 03:08:12 +00:00
author_email='justin@driscolldev.com',
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=find_packages(),
zip_safe=False,
include_package_data=True,
2012-10-25 03:45:00 +00:00
tests_require=[
'nose==1.2.1',
'nose-progressive==1.3',
'django-nose==1.1',
],
2012-07-20 01:03:15 +00:00
install_requires=[
'django-appconf>=0.5',
],
classifiers=[
2012-03-20 09:39:36 +00:00
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
2011-04-01 19:26:17 +00:00
'Framework :: Django',
'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'
],
)