d44dfd7526
Spyglass will soon have its plugins separated from its main repo. Many other OpenStack repositories that utilize plugins have implemented Python Build Reasonableness to manage their entry points for plugins. As Spyglass will be managing plugins, it makes sense to stay uniform with other projects and implement PBR. Implements PBR using setup.py and setup.cfg files. Changes README to correct file extension. Freezes PIP requirements file. Moves YAPF configuration into setup.cfg file. Change-Id: I48ac5aeb3e544d3da7ce25bd9b827d8fd9c4e108
18 lines
697 B
Python
Executable File
18 lines
697 B
Python
Executable File
# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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(setup_requires=['pbr>=2.0.0'], pbr=True)
|