8c4ff32c15
OpenStack is dropping the py2.7 support in ussuri cycle. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Use modern sphinx-build command. Change-Id: I8b6d7f69bb465150115cfc18a047e5775f1ff567
33 lines
1.3 KiB
Python
Executable File
33 lines
1.3 KiB
Python
Executable File
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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.
|
|
|
|
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
|
|
from setuptools import setup
|
|
# from setuptools import find_packages
|
|
|
|
setup(name="molteniron",
|
|
version="1.0",
|
|
description="Client/server database for Ironic Baremetal services",
|
|
url="https://github.com/openstack/molteniron",
|
|
py_modules=["molteniron/__init__", "molteniron/moltenirond"],
|
|
scripts=["molteniron/moltenirond-helper",
|
|
"molteniron/molteniron",
|
|
"utils/test_hook_mi_ipmiblob.py",
|
|
"utils/test_hook_mi_ipmiblob.sh"],
|
|
package_data={"molteniron": ["*.yaml"]},
|
|
include_package_data=True,
|
|
setup_requires=['pbr'],
|
|
pbr=True)
|