diff --git a/README.rst b/README.rst
index 292e35f049f78f1da8cd3eeffbe00140f56735c9..cb05d7bc0c27fc7244e4dbe6e422ca86e470d50d 100644
--- a/README.rst
+++ b/README.rst
@@ -4,6 +4,11 @@ zone2gandi
 Please have a look at the corresponding article:
 http://gehrcke.de/2014/02/distributing-a-python-command-line-application/
 
+Getting API Credentials
+~~~~~~~~~~~~~~~~~~~~~~~
+
+http://doc.rpc.gandi.net/
+
 Config
 ~~~~~~
 
diff --git a/setup.py b/setup.py
index 9104ee46b00eafab565fcb89f706330d30e125fb..7a39f9eacc68232b3e90938a6417c1614342c147 100644
--- a/setup.py
+++ b/setup.py
@@ -12,19 +12,22 @@ version = re.search(
     ).group(1)
 
 
-with open("README.rst", "rb") as f:
-    long_descr = f.read().decode("utf-8")
+with open('README.rst', 'rb') as f:
+    long_descr = f.read().decode('utf-8')
 
 setup(
-    name = "zone2gandi",
-    packages = ["zone2gandi"],
+    name = 'zone2gandi',
+    packages = ['zone2gandi'],
+    install_requires=[
+      'PyYAML', 'json2yaml',
+    ],
     entry_points = {
-        "console_scripts": ['zone2gandi = zone2gandi.zone2gandi:main']
+        'console_scripts': ['zone2gandi = zone2gandi.zone2gandi:main']
         },
     version = version,
-    description = "Utility to push zone files up to Gandi DNS.",
+    description = 'Utility to push zone files up to Gandi DNS.',
     long_description = long_descr,
-    author = "Kevin Lyda",
-    author_email = "kevin@ie.suberic.net",
-    url = "https://gitlab.com/lyda/zone2gandi",
+    author = 'Kevin Lyda',
+    author_email = 'kevin@ie.suberic.net',
+    url = 'https://gitlab.com/lyda/zone2gandi',
     )