d17485f8b9
- tox commands - docs update Change-Id: Ie6caa498d6017822e095ee5b001124074e2755aa
11 lines
156 B
Python
Executable File
11 lines
156 B
Python
Executable File
import setuptools
|
|
|
|
try:
|
|
import multiprocessing # noqa
|
|
except ImportError:
|
|
pass
|
|
|
|
setuptools.setup(
|
|
setup_requires=['pbr>=2.0.0'],
|
|
pbr=True)
|