Fei Long Wang 4b7f8361a1 Init commit for distil client
Change-Id: I335b53edb9b1d2d9d7615fb8d7cec71b653c6ace
2016-06-14 11:38:50 +12:00

15 lines
349 B
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>=1.8'],
pbr=True)