diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ if sys.version_info <= (2, 4): setup(name = "boto", version = __version__, description = "Amazon Web Services Library", - long_description = "Python interface to Amazon's Web Services.", + long_description = open("README.rst").read(), author = "Mitch Garnaat", author_email = "mitch@garnaat.com", scripts = ["bin/sdbadmin", "bin/elbadmin", "bin/cfadmin", @@ -64,7 +64,7 @@ setup(name = "boto", "boto.fps", "boto.emr", "boto.emr", "boto.sns", "boto.ecs", "boto.iam", "boto.route53", "boto.ses", "boto.cloudformation", "boto.sts", "boto.dynamodb", - "boto.swf"], + "boto.swf", "boto.mws"], package_data = {"boto.cacerts": ["cacerts.txt"]}, license = "MIT", platforms = "Posix; MacOS X; Windows", |