coats/setup.py
Sorin Sbarnea 1838510f47 Initial commit
Contains FoxReplace config that augments open stack build logs,
making easier to spot errors in them.
2018-10-01 13:40:17 +01:00

16 lines
393 B
Python

#!/usr/bin/env python
import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=3.0.0', 'setuptools>=17.1'],
pbr=True)