Merge "Change PTL informatin in INFO"
[bottlenecks.git] / testsuites / vstf / vstf_scripts / setup.py
1 ##############################################################################
2 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
11 import setuptools
12
13 # In python < 2.7.4, a lazy loading of package `pbr` will break
14 # setuptools if some other modules registered functions in `atexit`.
15 # solution from: http://bugs.python.org/issue15881#msg170215
16 try:
17     import multiprocessing  # noqa
18 except ImportError:
19     pass
20
21 setuptools.setup(
22     setup_requires=['pbr'],
23     pbr=True)