blob: 09bb8955dab42944d81bb66d3e9a956ff94d674c [file] [log] [blame]
Varun Belurf81a5fc2017-08-11 16:52:59 -07001#!/usr/bin/env python
2#
3# Copyright 2017-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17from setuptools import setup
18
19setup(name='multistructlog',
Sapan Bhatiab7347742017-09-22 09:41:56 -070020 version='1.0',
Varun Belurf81a5fc2017-08-11 16:52:59 -070021 description='structlog with multiple simultaneous logging backends',
22 author='Varun Belur, Sapan Bhatia',
23 author_email='varun@opennetworking.org,sapan@opennetworking.org',
24 py_modules=['multistructlog'],
25 license='Apache 2',
26 classifiers=[
27 'Development Status :: 5 - Production/Stable',
28 'Intended Audience :: Developers',
Varun Belurf81a5fc2017-08-11 16:52:59 -070029 'Topic :: System :: Logging',
30 'License :: OSI Approved :: Apache Software License',
31 'Programming Language :: Python :: 2.7'
32 ],
33 copyright='Open Networking Foundation',
34 include_package_data=True,
Sapan Bhatia74cd1e42017-08-14 02:00:04 -040035 install_requires=['structlog', 'python-logstash', 'colorama'],
Varun Belurf81a5fc2017-08-11 16:52:59 -070036 keywords=['multistructlog', 'structlog',
37 'multiple backends', 'xos logging']
38 )