File: setup.py

package info (click to toggle)
guake 3.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,588 kB
  • sloc: python: 6,560; xml: 600; makefile: 545; sh: 277
file content (17 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- 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)