guake-guake/setup.py
Gaetan Semet db83653fdb clean and and post commit-hook
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2018-01-05 23:40:25 +01:00

18 lines
535 B
Python

# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
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'], pbr=True, include_package_data=True)