e93ec5c097
Fix several missing docstrings and rename _RulesAPI to RulesAPI for nicer rendering. Exclude shell.py from API reference, as it's not a part of API. This gives us nicely rendered documentation with proper links to the code. A potentially breaking change: I had to stop reimporting exceptions in ironic_inspector_client.client and directly import them from http.py instead, otherwise Sphinx gets very confused when linking to them. Closes-Bug: #1522443 Change-Id: I1133a4b13bc80fa98ac3b1967e272ed06f7a0754
17 lines
699 B
Python
17 lines
699 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.
|
|
|
|
import pbr.version
|
|
|
|
version_info = pbr.version.VersionInfo('python-ironic-inspector-client')
|
|
"""Installed package version."""
|