Merge "Add setup.py for multivimbroker"
[multicloud/framework.git] / multivimbroker / setup.py
1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at:
4 #       http://www.apache.org/licenses/LICENSE-2.0
5 #
6 # Unless required by applicable law or agreed to in writing, software
7 # distributed under the License is distributed on an "AS IS" BASIS,
8 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
10 import setuptools
11
12 setuptools.setup(
13     name="multivimbroker",
14     version="1.0",
15     packages=setuptools.find_packages(),
16     include_package_data=True,
17     zip_safe=True
18 )