
- Add parseable version in swiftclient.__init.py - Generate rst doc like done for swift. Change-Id: I408fbc36693772d2ef6f4823757dd1f4c830193f
11 lines
263 B
Python
11 lines
263 B
Python
# -*- encoding: utf-8 -*-
|
|
""""
|
|
OpenStack Swift Python client binding.
|
|
"""
|
|
from client import *
|
|
|
|
#: Version information ``(major, minor, revision)``.
|
|
version_info = (1, 1, 0)
|
|
#: Version string ``'major.minor.revision'``.
|
|
version = '.'.join(map(str, version_info))
|