mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Added setup.py and relocated source dir
This commit is contained in:
parent
0dc198f355
commit
920bf47128
13 changed files with 28 additions and 0 deletions
28
setup.py
Normal file
28
setup.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#/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'],
|
||||
)
|
||||
Loading…
Reference in a new issue