diff --git a/README.md b/README.md
index 8f9789689c426ab8c9d4f2bcd65cc511a9748086..0a3763b1b04aa1df77a2dca34aac298091bf73fa 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,7 @@ You only need to remember that:
 2. CoolAMQP will tell you when it senses losing broker connection.
  * It will also tell you when it regains the connection (that means that everything is redefined).
 3. Delivering messages multiple times may happen.
+ * Ensure you know when it happens. Keywords: message acknowledgement, amqp specification
 
 As the project is in it's infancy stages, but actively maintained and used in a commercial project,
 if you need a feature - just drop me a note or create a new issue here.
diff --git a/setup.py b/setup.py
index d70b452082a8c741e690d7315b4a6d277b5f26f5..a33ce82588ffeaa721123ef618befc6ac706c4a0 100644
--- a/setup.py
+++ b/setup.py
@@ -3,10 +3,10 @@
 from distutils.core import setup
 
 setup(name='CoolAMQP',
-      version='1.0',
+      version='0.1',
       description='The AMQP client library',
       author=u'Piotr Maślanka',
       author_email='piotrm@smok.co',
       url='https://github.com/piotrmaslanka/coolamqp',
-      packages=['coolamqp'],
+      packages=['coolamqp', 'coolamqp.backends'],
      )
\ No newline at end of file