-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
26 lines (24 loc) · 958 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
#coding=utf-8
import os
from setuptools import setup
def openf(fname):
return open(os.path.join(os.path.dirname(__file__), fname))
setup(
name="redis-simple-cache",
version="0.0.6",
author="Vivek Narayanan, Flávio Juvenal, Sam Zaydel",
author_email="[email protected]",
description="redis-simple-cache is a pythonic interface for creating a cache over redis. "
"It provides simple decorators that can be added to any function to cache its return values. ",
license="3-clause BSD",
keywords="decorator decorators redis cache",
url="https://github.com/vivekn/redis-simple-cache",
packages=['redis_cache'],
long_description=openf("README.md").read(),
install_requires=[line.strip() for line in openf("requirements.txt") if line.strip()],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)