summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Saryerwinnie <js@jamesls.com>2013-01-14 17:37:30 -0800
committerJames Saryerwinnie <js@jamesls.com>2013-01-17 10:49:14 -0800
commit623f122f312a11fe9296940d9e03211bfd6cf0bc (patch)
treefce2b3b697461030b9f24f1a0e3f3db4bfdf079b
parent9cd95e45c728a200ce7c46e4270d0772a0371f26 (diff)
downloadboto-623f122f312a11fe9296940d9e03211bfd6cf0bc.tar.gz
Update boto metadata for elasticache
Includes: * including in package list for setup.py * generating API docs * adding service to README
-rw-r--r--README.rst1
-rw-r--r--docs/source/index.rst1
-rw-r--r--docs/source/ref/elasticache.rst19
-rw-r--r--setup.py2
4 files changed, 22 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 3e3624cd..48c6fcc0 100644
--- a/README.rst
+++ b/README.rst
@@ -29,6 +29,7 @@ At the moment, boto supports:
* Amazon Relational Data Service (RDS)
* Amazon DynamoDB
* Amazon SimpleDB
+ * Amazon ElastiCache
* Deployment and Management
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 4741c170..6b9ea67a 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -28,6 +28,7 @@ Currently Supported Services
* :doc:`SimpleDB <simpledb_tut>` -- (:doc:`API Reference <ref/sdb>`)
* :doc:`DynamoDB <dynamodb_tut>` -- (:doc:`API Reference <ref/dynamodb>`)
* Relational Data Services (RDS) -- (:doc:`API Reference <ref/rds>`)
+ * ElastiCache -- (:doc:`API Reference <ref/elasticache>`)
* **Deployment and Management**
diff --git a/docs/source/ref/elasticache.rst b/docs/source/ref/elasticache.rst
new file mode 100644
index 00000000..0dce04c4
--- /dev/null
+++ b/docs/source/ref/elasticache.rst
@@ -0,0 +1,19 @@
+.. ref-elasticache
+
+==================
+Amazon ElastiCache
+==================
+
+boto.elasticache
+-------------
+
+.. automodule:: boto.elasticache
+ :members:
+ :undoc-members:
+
+boto.elasticache.layer1
+---------------------
+
+.. automodule:: boto.elasticache.layer1
+ :members:
+ :undoc-members:
diff --git a/setup.py b/setup.py
index b10063cc..78703673 100644
--- a/setup.py
+++ b/setup.py
@@ -71,7 +71,7 @@ setup(name = "boto",
"boto.ecs", "boto.iam", "boto.route53", "boto.ses",
"boto.cloudformation", "boto.sts", "boto.dynamodb",
"boto.swf", "boto.mws", "boto.cloudsearch", "boto.glacier",
- "boto.beanstalk", "boto.datapipeline"],
+ "boto.beanstalk", "boto.datapipeline", "boto.elasticache"],
package_data = {"boto.cacerts": ["cacerts.txt"]},
license = "MIT",
platforms = "Posix; MacOS X; Windows",