48db8c45a4
This script is not expected to be run directly, remove the executable bit. Change-Id: I3013ea2fe8231c9e7f381d1a5e7c0504153505ec
9 lines
147 B
Python
9 lines
147 B
Python
import setuptools
|
|
|
|
try:
|
|
import multiprocessing # noqa
|
|
except ImportError:
|
|
pass
|
|
|
|
setuptools.setup(setup_requires=['pbr>=2.0.0'], pbr=True)
|