summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorandymccurdy <andy@andymccurdy.com>2010-02-16 13:07:50 -0800
committerandymccurdy <andy@andymccurdy.com>2010-02-16 13:07:50 -0800
commit62fd846e4a6bf540400447e9be62982c22f412d8 (patch)
tree9130d365bcefbf8f4e5d411a27c743d04f0be5dc /setup.py
parent3b05b78c0af9ed92131e797d666f0a1e9d20ff92 (diff)
downloadredis-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cb0813c..55efdff 100644
--- a/setup.py
+++ b/setup.py
@@ -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',