rbd-iscsi-client/rbd_iscsi_client/__init__.py
Brian Rosmaita 63da3ebb54 Format as a Cinder-related OpenStack project
- rearrange docs and add doc/requirements.txt
- add releasenotes directory and reno setup files
- update some requirements
- add lower-constraints
- update tox.ini
- minor changes for doc8 and pep8
- add .zuul.yaml

Technical debt: the tox 'pylint' testenv doesn't work;
see comments in tox.ini

Change-Id: I35e4dc1b9af91741176784886a84c55fbd4cd11c
2021-04-20 22:08:33 -04:00

21 lines
797 B
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License."""Top-level package for RBD iSCSI Client."""
import pbr.version
version_info = pbr.version.VersionInfo('rbd-iscsi-client')
try:
__version__ = version_info.version_string()
except AttributeError:
__version__ = None