forked from thumbor/thumbor-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.38 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/python
# -*- coding: utf-8 -*-
# thumbor imaging service
# https://github.com/globocom/thumbor/wiki
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com [email protected]
from setuptools import setup
from thumbor_plugins import __version__
setup(
name='thumbor-plugins',
version=__version__,
keywords='imaging face detection feature thumbnail imagemagick pil opencv',
author='globo.com',
author_email='[email protected]',
url='https://github.com/globocom/thumbor/wiki',
license='MIT',
description='Optimizers and filters contributed by the Thumbor community',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics :: Presentation'
],
packages=['thumbor_png_optimizers'],
package_dir={"thumbor_png_optimizers": "thumbor_png_optimizers"},
install_requires=[
'thumbor',
],
extras_require={
'tests': [
'pyvows',
'mock',
'colorama',
]
}
)