Expunge sensitive hostnames and IPs
[logging-analytics.git] / pylog / setup.py
1 # Copyright (c) 2018 VMware, Inc.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
13
14 from setuptools import setup, find_packages
15
16 setup(
17
18     name='onappylog',
19     keywords=("yaml", "logging", "mdc", "onap"),
20     description='onap python logging library',
21     long_description="python-package onappylog could be used in any python"
22                      "project to record MDC information and reload logging"
23                      "at runtime",
24     version="1.6.10",
25     license="Apache 2.0",
26     author='ke liang',
27     author_email="lokyse@163.com",
28     packages=find_packages(),
29     platforms=['all'],
30     url="https://github.com/onap/logging-analytics/tree/master/pylog",
31     install_requires=[
32         "PyYAML>=3.10",
33         "watchdog>=0.8.3"
34     ],
35     classifiers=[
36         'Development Status :: 4 - Beta',
37         'Intended Audience :: Developers',
38         'Programming Language :: Python :: 2.7',
39         'Programming Language :: Python :: 3'
40     ]
41 )