log_processor/setup.py
K Jonathan Harker 2c63950e34 Add project boilerplate
Update the .gitreview file for the new project name.
Add skeleton docs, setup, and testing.

Most of this boilerplate has been copied from nodepool.

In order to make testing easier, the EventProcessor class has been
slightly refactored to allow FakeEventProcessor to subclass and
mock out the socket object with a Queue.Queue object.

Change-Id: I137849a16807b9c56cd6f31de57b2b99506c8219
2015-11-23 15:32:06 -08:00

22 lines
717 B
Python

#!/usr/bin/env python
# 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.
import setuptools
setuptools.setup(
setup_requires=['pbr>=1.3'],
pbr=True)