diff options
| author | Anurag Goel <_@anur.ag> | 2011-10-29 13:17:23 -0700 |
|---|---|---|
| committer | Anurag Goel <_@anur.ag> | 2011-10-29 13:17:23 -0700 |
| commit | 05a56a4183a4f24171d546051874407abe261828 (patch) | |
| tree | b6ad6452c05dc11ed628a5375f8dbb532ee43ec2 | |
| parent | ae725ab4d8702d2a01d252898aa7bbef93875121 (diff) | |
Add MANIFEST.in for cross-version build compatibilityv1.5.26
Version bump
| -rw-r--r-- | MANIFEST.in | 1 | ||||
| -rw-r--r-- | VERSION | 2 | ||||
| -rw-r--r-- | setup.py | 1 | ||||
| -rw-r--r-- | stripe/__init__.py | 2 |
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 @@ -1 +1 @@ -1.5.25 +1.5.26 @@ -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 |
