Skip to content

Commit

Permalink
Explicitly add cacerts.txt to MANIFEST.in to make sure it is included…
Browse files Browse the repository at this point in the history
… in source distributions. Closes GH-260.
  • Loading branch information
garnaat committed Jul 20, 2011
1 parent ec14d48 commit 2c4b278
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1 +1 @@
recursive-include tests * include boto/cacerts/cacerts.txt
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -32,15 +32,15 @@


import sys import sys


from boto import Version from boto import __version__


if sys.version_info <= (2, 4): if sys.version_info <= (2, 4):
error = "ERROR: boto requires Python Version 2.5 or above...exiting." error = "ERROR: boto requires Python Version 2.5 or above...exiting."
print >> sys.stderr, error print >> sys.stderr, error
sys.exit(1) sys.exit(1)


setup(name = "boto", setup(name = "boto",
version = Version, version = __version__,
description = "Amazon Web Services Library", description = "Amazon Web Services Library",
long_description = "Python interface to Amazon's Web Services.", long_description = "Python interface to Amazon's Web Services.",
author = "Mitch Garnaat", author = "Mitch Garnaat",
Expand Down

0 comments on commit 2c4b278

Please sign in to comment.