forked from samastur/image-diet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.14 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.14 KB
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
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
long_description = '''\
image-diet is a Django application for removing unnecessary bytes from image
files. It optimizes images without changing their look or visual quality
("losslessly").
It works on images in JPEG, GIF and PNG formats and will leave others
unchanged. Provides a seemless integration with easy_thumbnails app, but can
work with others too.'''
setup(
author="Marko Samastur",
author_email="markos@gaivo.net",
name='image-diet',
version='0.7.1',
description='Remove unnecessary bytes from images',
long_description=long_description,
url='https://github.com/samastur/image-diet/',
platforms=['OS Independent'],
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Utilities',
],
install_requires=[
'django>=1.3',
],
include_package_data=True,
packages=find_packages(),
zip_safe=False
)