mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Massaging setup.py.
This commit is contained in:
parent
2bac3b5c7a
commit
ede345a780
1 changed files with 10 additions and 12 deletions
22
setup.py
22
setup.py
|
|
@ -1,14 +1,16 @@
|
|||
#/usr/bin/env python
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name='django-imagekit',
|
||||
version='0.3.3',
|
||||
description='Automated image processing for Django models.',
|
||||
author='Justin Driscoll',
|
||||
author_email='justin@driscolldev.com',
|
||||
url='http://bitbucket.org/jdriscoll/django-imagekit/',
|
||||
packages=find_packages(),
|
||||
url='http://github.com/jdriscoll/django-imagekit/',
|
||||
packages=[
|
||||
'imagekit'
|
||||
],
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Environment :: Web Environment',
|
||||
|
|
@ -17,12 +19,8 @@ setup(
|
|||
'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=['setuptools_hg'],
|
||||
'Topic :: Utilities'
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue