From 9dd31f8de90123e4b5dbda198db650d173b8c37e Mon Sep 17 00:00:00 2001 From: Tyler Hobbs Date: Tue, 12 Feb 2013 17:11:29 -0600 Subject: [PATCH] Add contrib package to setup.py, make version 1.8.1-SNAPSHOT --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9ed54a96..ab955efc 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ from distutils.cmd import Command -__version__ = "1.8.0" +__version__ = "1.8.1-SNAPSHOT" long_description = """pycassa is a python client library for Apache Cassandra with the following features: @@ -122,7 +122,8 @@ def run(self): keywords = 'cassandra client db distributed thrift', packages = ['pycassa', 'pycassa.cassandra', - 'pycassa.logging'], + 'pycassa.logging', + 'pycassa.contrib'], install_requires = ['thrift'], py_modules=['ez_setup'], scripts=['pycassaShell'],