Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
Fixed import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Liban committed Jul 7, 2013
1 parent 6a9bc15 commit 30b364c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -21,6 +21,7 @@
description = 'A library for generating and storing short keys.',

requires = [
'redis'
],

author = 'Charlie Liban',
Expand Down
12 changes: 7 additions & 5 deletions shorten/__init__.py
@@ -1,15 +1,17 @@
import alphabets
import key
import store
import token
from . import alphabets
from . import key
from . import store
from . import token
from . import errors
from . import formatter

from errors import KeyInsertError, TokenInsertError, RevokeError
from formatter import Formatter, NamespacedFormatter
from key import BaseKeyGenerator
from store import BaseStore, MemoryStore, MemoryKeygen, RedisStore, RedisKeygen, MemcacheStore, MemcacheKeygen
from token import TokenGenerator, UUIDTokenGenerator

__version__ = '2.0.0'
__version__ = '2.0.1'

stores = ('memcache', 'memory', 'redis')

Expand Down

0 comments on commit 30b364c

Please sign in to comment.