9a9f159769
The log-gearman-client and log-gearman-worker scripts have been moved from puppet-log_processor repository [1] to this project. Ported files also include patch that was giving capability with Python3 [2] and fixed pep8 errors. [1] https://opendev.org/opendev/puppet-log_processor [2] https://review.opendev.org/c/opendev/puppet-log_processor/+/809424 Change-Id: I353f98bd07d0c21b80f92307806b50da4c7ee39c
21 lines
657 B
Python
21 lines
657 B
Python
# Copyright (C) 2021 Red Hat
|
|
#
|
|
# 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
|
|
|
|
setuptools.setup(
|
|
setup_requires=['pbr'],
|
|
pbr=True
|
|
)
|