spyglass-plugin-xls/setup.py
Ian H. Pittwood d302ca306a Implement PBR for XLS plugin
Spyglass uses PBR for its packaging so it makes sense that its plugins
would do the same. This change makes the necessary updates to have
spyglass-plugin-xls use python build reasonableness.

Implements PBR in setup.py and setup.cfg

Moves YAPF configuration into setup.cfg

Change-Id: Ie0dab14bc266a0000566995c8fb2f9640fce7868
2019-06-11 16:14:32 -05:00

17 lines
696 B
Python

# 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)