Preparing for release
diff --git a/setup.py b/setup.py
index a83903f..c195e78 100755
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,9 @@
 datetime module available in the Python standard library.
 """,
       packages = ["dateutil", "dateutil.zoneinfo"],
-      package_data={"": ["*.tar.gz"]},
-      include_package_data=True,
-      zip_safe=False,
+      package_data = {"": ["*.tar.gz"]},
+      include_package_data = True,
+      zip_safe = False,
+      requires = ["six"],
+      install_requires = ["six"], # XXX fix when packaging is sane again
       )