forked from francescortiz/image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 719 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='image',
version='1.1',
author=u'Francesc Ortiz',
author_email='francescortiz@gmail.com',
packages=['image'],
url='https://github.com/francescortiz/image',
license='BSD',
description='Django application that provides cropping, resizing, ' + \
'thumbnailing, overlays and masking for images and videos with ' + \
'the ability to set the center of attention,',
long_description='Django application that provides cropping, resizing, ' + \
'thumbnailing, overlays and masking for images and videos with ' + \
'the ability to set the center of attention,',
zip_safe=False,
include_package_data=True,
)