diff --git a/kuryr/__init__.py b/kuryr/__init__.py index e69de29b..7eb4ac4d 100644 --- a/kuryr/__init__.py +++ b/kuryr/__init__.py @@ -0,0 +1,17 @@ +# 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__ = pbr.version.VersionInfo( + 'kuryr-lib').version_string() diff --git a/kuryr/lib/version.py b/kuryr/lib/version.py index f87fa0bc..0f792545 100644 --- a/kuryr/lib/version.py +++ b/kuryr/lib/version.py @@ -14,4 +14,4 @@ import pbr.version -version_info = pbr.version.VersionInfo('kuryr') +version_info = pbr.version.VersionInfo('kuryr-lib') diff --git a/setup.cfg b/setup.cfg index 863b7272..e770d583 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,6 @@ [metadata] -name = kuryr -version = 0.1.0 -summary = Docker libnetwork driver for OpenStack Neutron +name = kuryr-lib +summary = Kuryr shared config and utilities description-file = README.rst author = OpenStack