Skip to content

Commit

Permalink
pypi stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kahan committed May 4, 2016
1 parent 28e9641 commit b7624e4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MANIFEST
@@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
redis_cache/__init__.py
redis_cache/redis_cache.py
redis_cache/redis_client.py
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
14 changes: 14 additions & 0 deletions setup.py
@@ -0,0 +1,14 @@
from distutils.core import setup

setup(
name='redis_cache_decorator',
packages=['redis_cache'],
version='0.1.0',
description='Implements function level caching to Redis with a decorator',
author='Alex Kahan',
author_email='alexk307@gmail.com',
url='https://github.com/alexk307/redis_cache',
download_url='https://github.com/alexk307/redis_cache',
keywords=['redis', 'cache'],
classifiers=[],
)

0 comments on commit b7624e4

Please sign in to comment.