-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·42 lines (36 loc) · 1.48 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
#!/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) 2013 Damien Hardy [email protected]
from setuptools import setup
__version__ = None
execfile('thumbor_hbase/_version.py')
setup(
name = "thumbor_hbase",
packages = ["thumbor_hbase"],
version = __version__,
description = "HBase image storage for Thumbor",
author = "Damien Hardy",
author_email = "[email protected]",
keywords = ["thumbor", "hbase", "hadoop", "images"],
license = 'MIT',
url = 'https://github.com/dhardy92/thumbor_hbase',
classifiers = ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics :: Presentation'
],
package_dir = {"thumbor_hbase": "thumbor_hbase"},
install_requires=["thumbor>=5.0.3","hbase_thrift"],
long_description = """\
Thumbor is a smart imaging service. It enables on-demand crop, resizing and flipping of images.
This module provide support for hbase as large auto replicant key/value backend storage for images.
"""
)