18 lines
378 B
Python
18 lines
378 B
Python
|
|
from .client import FlaskRedis
|
||
|
|
|
||
|
|
|
||
|
|
__version__ = "0.4.0"
|
||
|
|
|
||
|
|
__title__ = "flask-redis"
|
||
|
|
__description__ = "A nice way to use Redis in your Flask app"
|
||
|
|
__url__ = "https://github.com/underyx/flask-redis/"
|
||
|
|
__uri__ = __url__
|
||
|
|
|
||
|
|
__author__ = "Bence Nagy"
|
||
|
|
__email__ = "bence@underyx.me"
|
||
|
|
|
||
|
|
__license__ = "Blue Oak License"
|
||
|
|
__copyright__ = "Copyright (c) 2019 Bence Nagy"
|
||
|
|
|
||
|
|
__all__ = [FlaskRedis]
|