From 2dbe655587ca98b67c1a3e3798c63fd47229adc0 Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Tue, 19 Jun 2018 16:13:31 +0200 Subject: Update code to 4.5 official version Change-Id: I5075da0e2a3247ae1564f21b358748f482b75aa4 --- moon_dashboard/setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 moon_dashboard/setup.py (limited to 'moon_dashboard/setup.py') diff --git a/moon_dashboard/setup.py b/moon_dashboard/setup.py new file mode 100644 index 00000000..4794e334 --- /dev/null +++ b/moon_dashboard/setup.py @@ -0,0 +1,14 @@ +# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT +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) \ No newline at end of file -- cgit 1.2.3-korg