From d8256eb3d3080ed9698edfa46a63feedd3ecce8b Mon Sep 17 00:00:00 2001
From: Kevin Lyda <kevin@ie.suberic.net>
Date: Fri, 20 Jan 2017 16:48:21 +0000
Subject: [PATCH] Add dependencies.

---
 README.rst |  5 +++++
 setup.py   | 21 ++++++++++++---------
 2 files changed, 17 insertions(+), 9 deletions(-)

diff --git a/README.rst b/README.rst
index 292e35f..cb05d7b 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 9104ee4..7a39f9e 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',
     )
-- 
GitLab