-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
22 lines (21 loc) · 804 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='django-croppable-images',
version="0.1",
description='Let\'s you easily manage cropped images on your Django models in conjunction with django-imagekit',
author='Daniel Shapiro',
author_email='[email protected]',
url='http://github.com/danxshap/django-croppable-images',
packages=find_packages(),
include_package_data = True,
install_requires = ['setuptools', 'django-imagekit==2.0.4'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)