diff --git a/README.md b/README.md
index 0a3763b1b04aa1df77a2dca34aac298091bf73fa..383fbfcc5405578e585df0530530cd6717bb1eec 100644
--- a/README.md
+++ b/README.md
@@ -20,3 +20,8 @@ You only need to remember that:
 
 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.
+
+
+todo
+----
+* Allow binding queues with exchanges with a routing_key
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 42a0b4e524088dee18e4ca085299f15264a1ba87..1bf86e0e4849111768413a55d8b5f752ce898ca0 100644
--- a/setup.py
+++ b/setup.py
@@ -3,10 +3,13 @@
 from distutils.core import setup
 
 setup(name='CoolAMQP',
-      version='0.1rc0',
+      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', 'coolamqp.backends'],
+      install_requires=[
+            "amqp"
+      ]
      )
\ No newline at end of file