From 7eb7704506e632c8be5dab991833ce5dd424724c Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Sat, 11 Jan 2014 20:29:59 -0500 Subject: [PATCH] Add requirements for Route53. --- README.md | 2 ++ setup.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index ffc1b9197..a8008d154 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,8 @@ It gets even better! Moto isn't just S3. Here's the status of the other AWS serv |------------------------------------------------------------------------------| | ELB | @mock_elb | core endpoints done | |------------------------------------------------------------------------------| +| Route53 | @mock_route53 | core endpoints done | +|------------------------------------------------------------------------------| | S3 | @mock_s3 | core endpoints done | |------------------------------------------------------------------------------| | SES | @mock_ses | core endpoints done | diff --git a/setup.py b/setup.py index 999afba42..6c3a79f7e 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,11 @@ from setuptools import setup, find_packages install_requires = [ "boto", + "dicttoxml", "flask", "httpretty>=0.6.1", "Jinja2", + "xmltodict", ] import sys