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