summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Garnaat <mitch@garnaat.com>2011-07-19 08:49:14 -0400
committerMitch Garnaat <mitch@garnaat.com>2011-07-20 15:03:00 -0400
commit2c4b278a1c15d5a76accf888ce142fed5a184db4 (patch)
tree42f93ef749b608913fa0ee8bbbbff496c015459c
parentec14d483481308d6fc5856245aa646bd33fada44 (diff)
downloadboto-2c4b278a1c15d5a76accf888ce142fed5a184db4.tar.gz
Explicitly add cacerts.txt to MANIFEST.in to make sure it is included in source distributions. Closes GH-260.
-rw-r--r--MANIFEST.in2
-rw-r--r--setup.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 37f630a4..fceffb71 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1 +1 @@
-recursive-include tests *
+include boto/cacerts/cacerts.txt
diff --git a/setup.py b/setup.py
index 6cf19410..97b4c408 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ except ImportError:
import sys
-from boto import Version
+from boto import __version__
if sys.version_info <= (2, 4):
error = "ERROR: boto requires Python Version 2.5 or above...exiting."
@@ -40,7 +40,7 @@ if sys.version_info <= (2, 4):
sys.exit(1)
setup(name = "boto",
- version = Version,
+ version = __version__,
description = "Amazon Web Services Library",
long_description = "Python interface to Amazon's Web Services.",
author = "Mitch Garnaat",