From 7330272e07e7bc3b72bf17cc4eb69ea9584697de Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Tue, 19 Dec 2017 15:54:33 +0800 Subject: Add pbr as building tool PBR is a library that helps to build python project through configuration files simplifying the deployment for them. This change adds support for it. Change-Id: I77ac639d9ba2df7122cb6a9cec68ae7551bac89e Issue-ID: MULTICLOUD-83 Signed-off-by: Victor Morales Signed-off-by: Bin Yang --- newton/setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 newton/setup.py (limited to 'newton/setup.py') diff --git a/newton/setup.py b/newton/setup.py new file mode 100644 index 00000000..0e04baae --- /dev/null +++ b/newton/setup.py @@ -0,0 +1,21 @@ +# Copyright (c) 2017 Intel Corporation +# +# 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. + +# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT +import setuptools + +setuptools.setup( + setup_requires=['pbr'], + pbr=True) -- cgit 1.2.3-korg