2012-05-08 11:17:04 +01:00
|
|
|
# -*- encoding: utf-8 -*-
|
2012-05-23 15:14:47 +02:00
|
|
|
""""
|
|
|
|
OpenStack Swift Python client binding.
|
|
|
|
"""
|
2012-05-08 11:17:04 +01:00
|
|
|
from client import *
|
2012-07-02 14:58:10 -07:00
|
|
|
|
2013-01-10 08:24:47 +00:00
|
|
|
# At setup.py time, we haven't installed anything yet, so there
|
|
|
|
# is nothing that is able to set this version property. Squelching
|
|
|
|
# that exception here should be fine- if there are problems with
|
|
|
|
# pkg_resources in a real install, that will manifest itself as
|
|
|
|
# an error still
|
|
|
|
try:
|
|
|
|
from swiftclient import version
|
|
|
|
|
|
|
|
__version__ = version.version_info.cached_version_string()
|
|
|
|
except Exception:
|
|
|
|
pass
|