mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
28 lines
997 B
Python
28 lines
997 B
Python
#/usr/bin/env python
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='django-imagekit',
|
|
version='0.1',
|
|
description='Automated image processing for Django models.',
|
|
author='Justin Driscoll',
|
|
author_email='justin.driscoll@gmail.com',
|
|
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.
|
|
setup_requires=['hg.setuptools'],
|
|
)
|