summaryrefslogtreecommitdiff
diff options
authorAnurag Goel <_@anur.ag>2011-10-29 13:17:23 -0700
committerAnurag Goel <_@anur.ag>2011-10-29 13:17:23 -0700
commit05a56a4183a4f24171d546051874407abe261828 (patch)
treeb6ad6452c05dc11ed628a5375f8dbb532ee43ec2
parentae725ab4d8702d2a01d252898aa7bbef93875121 (diff)
Add MANIFEST.in for cross-version build compatibilityv1.5.26
Version bump
-rw-r--r--MANIFEST.in1
-rw-r--r--VERSION2
-rw-r--r--setup.py1
-rw-r--r--stripe/__init__.py2
4 files changed, 3 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 00000000..b75db343
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include VERSION stripe/data/ca-certificates.crt
diff --git a/VERSION b/VERSION
index 32461d59..5b5dc420 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.5.25
+1.5.26
diff --git a/setup.py b/setup.py
index dc6af882..e839a1e4 100644
--- a/setup.py
+++ b/setup.py
@@ -15,6 +15,5 @@ setup(name='stripe',
author_email='support@stripe.com',
url='https://stripe.com/',
packages=['stripe'],
- package_data={'stripe' : ['data/ca-certificates.crt', '../VERSION']},
install_requires=['simplejson', 'pycurl']
)
diff --git a/stripe/__init__.py b/stripe/__init__.py
index 249a3615..e53319a1 100644
--- a/stripe/__init__.py
+++ b/stripe/__init__.py
@@ -65,7 +65,7 @@ if not _httplib:
raise ImportError("Stripe requires one of pycurl, Google App Engine's urlfetch, or urllib2. If you are on a platform where none of these libraries are available, please let us know at support@stripe.com.")
## Configuration variables
-VERSION = '1.5.25'
+VERSION = '1.5.26'
logger = logging.getLogger('stripe')
api_key = None