2 Star 3 Fork 0

阿债 / rdcache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿债 提交于 2017-02-21 11:24 . change holdeplace to fill_none
import sys
from os.path import join, dirname
from setuptools import setup, find_packages
sys.path.insert(0, join(dirname(__file__), 'src'))
from rdcache import __version__
sys.path.pop(0)
setup(
name="rdcache",
version=__version__,
description="caching for humans, forked from jneen/python-cache",
author="Jay Adkisson, Ryan Liu",
author_email="azhai (at) 126 (dot) com",
url="https://github.com/azhai/rdcache",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Database :: Front-Ends",
"License :: OSI Approved :: MIT License",
],
keywords=["cache", "decorator"],
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['redis', 'anyjson'], #if use rdcache.ext.RedisCache
)
Python
1
https://gitee.com/azhai/rdcache.git
git@gitee.com:azhai/rdcache.git
azhai
rdcache
rdcache
master

搜索帮助