forked from thumbor-community/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 876 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
27
28
29
30
31
32
33
34
import os
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = 'Thumbor redis storage adapters'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="tc_redis",
version="1.0.1",
author="Thumbor Community",
description=("Thumbor redis storage adapters"),
license="MIT",
keywords="thumbor redis",
url="https://github.com/thumbor-community/redis",
packages=find_packages(),
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
install_requires=[
'thumbor>=5.0.0',
'redis'
]
)