-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
26 lines (24 loc) · 950 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
23
24
25
26
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
from image import VERSION
setup(
name='image',
version='.'.join((str(x) for x in VERSION)),
author=u'Francesc Ortiz',
author_email='[email protected]',
packages=find_packages(),
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,
install_requires=[
'pillow', 'django', 'six',
],
)