blob: f73054605f8bd8b1ec1a6f2b7c0863270a33ba11 [file] [log] [blame]
DavidPurcellb25f93d2017-01-27 12:46:27 -05001# Copyright 2017 ATT Corporation.
2# All Rights Reserved.
DavidPurcell663aedf2017-01-03 10:01:14 -05003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
18import setuptools
19
20# In python < 2.7.4, a lazy loading of package `pbr` will break
21# setuptools if some other modules registered functions in `atexit`.
22# solution from: http://bugs.python.org/issue15881#msg170215
23try:
24 import multiprocessing # noqa
25except ImportError:
26 pass
27
28setuptools.setup(
29 setup_requires=['pbr>=1.8'],
30 pbr=True)