5aa7c37144
This is apparently fixed in pbr since I3972b3132619e8e2dd7e362ca5fe9d1e3add43b8 but I'm seeing the issue with pbr 0.5.21 on Fedora. Related-Bug: #1194742 Change-Id: I136b8493c8d8d48a0116facf5f23c2a1479c070f
24 lines
797 B
Python
24 lines
797 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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 setuptools
|
|
|
|
setuptools.setup(
|
|
namespace_packages=['oslo'],
|
|
packages=['oslo', 'oslo.messaging'],
|
|
setup_requires=['d2to1', 'pbr'],
|
|
d2to1=True)
|