diff options
author | andymccurdy <andy@andymccurdy.com> | 2010-02-16 13:07:50 -0800 |
---|---|---|
committer | andymccurdy <andy@andymccurdy.com> | 2010-02-16 13:07:50 -0800 |
commit | 62fd846e4a6bf540400447e9be62982c22f412d8 (patch) | |
tree | 9130d365bcefbf8f4e5d411a27c743d04f0be5dc /setup.py | |
parent | 3b05b78c0af9ed92131e797d666f0a1e9d20ff92 (diff) | |
download | redis-py-62fd846e4a6bf540400447e9be62982c22f412d8.tar.gz |
- added ability for subclasses of Redis to provide their own decode logic if desired.
- setup.py needed to specify the package rather than py_module in order for build to work correctly.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ sdict = { 'maintainer_email' : 'sedrik@gmail.com', 'keywords' : ['Redis', 'key-value store'], 'license' : 'MIT', - 'py_modules' : ['redis'], + 'packages' : ['redis'], 'test_suite' : 'tests.all_tests', 'classifiers' : [ 'Development Status :: 4 - Beta', |