Skip to content

Commit

Permalink
Version 1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
huntfx committed Mar 10, 2020
1 parent 89fb0f3 commit 2113547
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def generator():
func = cache()(lambda: None)
```

## Reference
## API Reference

### cache(_keys=None, ignore=None, timeout=None, size=None, precalculate=False_)

Expand Down
3 changes: 2 additions & 1 deletion setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ IF EXIST dist (rmdir dist /s /q)
py setup.py sdist
py -m twine upload dist/*
rmdir dist /s /q
rmdir supercache.egg-info /s /q
rmdir supercache.egg-info /s /q
PAUSE
3 changes: 3 additions & 0 deletions supercache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
from .utils import *


__version__ = '1.0.0'


class cache(object):
"""Base cache wrapper.
This is designed to be added to a function as a decorator.
Expand Down

0 comments on commit 2113547

Please sign in to comment.