Blame setup.py

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