2013-06-27 15:56:19 -04:00
|
|
|
#!/usr/bin/env python
|
2013-06-30 14:06:53 -04:00
|
|
|
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
2015-12-01 14:30:01 -05:00
|
|
|
# Copyright (c) 2015 Lenovo
|
2013-06-30 14:06:53 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2013-06-27 15:56:19 -04:00
|
|
|
|
2013-09-13 11:21:12 -05:00
|
|
|
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
|
2013-06-30 14:06:53 -04:00
|
|
|
import setuptools
|
2013-06-27 15:56:19 -04:00
|
|
|
|
2013-06-30 14:06:53 -04:00
|
|
|
setuptools.setup(
|
2015-12-01 14:30:01 -05:00
|
|
|
license='Apache License, Version 2.0',
|
2013-09-13 11:21:12 -05:00
|
|
|
setup_requires=['pbr'],
|
|
|
|
pbr=True)
|