forked from thumbor/libthumbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.62 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
48
49
#!/usr/bin/python
# -*- coding: utf-8 -*-
# libthumbor - python extension to thumbor
# http://github.com/heynemann/libthumbor
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Bernardo Heynemann [email protected]
'''Module that configures setuptools to package libthumbor'''
from setuptools import setup, find_packages
from libthumbor import __version__
setup(
name = 'libthumbor',
version = __version__,
description = "libthumbor is the python extension to thumbor",
long_description = """
libthumbor is the python extension to thumbor.
It allows users to generate safe urls easily.
""",
keywords = 'imaging face detection feature thumbor thumbnail' + \
' imagemagick pil opencv',
author = 'Bernardo Heynemann',
author_email = '[email protected]',
url = 'http://github.com/heynemann/libthumbor',
license = 'MIT',
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.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics :: Presentation'
],
packages = find_packages(),
package_dir = {"libthumbor": "libthumbor"},
include_package_data = True,
package_data = {
},
install_requires=[
"pyCrypto"
],
)