Added method to OpenStackHeatStack to return OpenStackSecurityGroup objects.
[snaps.git] / setup.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2016 Cable Television Laboratories and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 import setuptools
11
12 __author__ = 'spisarski'
13 # In python < 2.7.4, a lazy loading of package `pbr` will break
14 # setuptools if some other modules registered functions in `atexit`.
15 # solution from: http://bugs.python.org/issue15881#msg170215
16 try:
17     import multiprocessing  # noqa
18 except ImportError:
19     pass
20
21 setuptools.setup(
22     setup_requires=['pbr>=2.0.0'],
23     pbr=True)