zaqar-ui/setup.py
shu-mutou 24337586f6 Add DevStack plugin settings
This patch adds DevStack plugin settings and revises README.
Also, changes using setup.cfg for setup script of DevStack.

Change-Id: Ib390d7a5ac359fc1c4d7f5132204f21747c3e42d
2016-03-18 18:54:16 +09:00

26 lines
724 B
Python

#!/usr/bin/env python
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import setuptools
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=1.8'],
pbr=True)