guake-guake/setup.py
Gaetan Semet 86995359b2 validate pip install guake
fix #1328

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2018-06-21 01:10:32 +02:00

18 lines
508 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)