log_helper improvements.
- Move some arguments to config file
- add possibility to install tool from setup.py file
- run the tool as script (without python statement)

Related-prod: PRODX-32778

Change-Id: Ibc1ef0a75f8ea04b017e1362f24b5b06b78a09eb
diff --git a/log_helper/setup.py b/log_helper/setup.py
new file mode 100644
index 0000000..5e73800
--- /dev/null
+++ b/log_helper/setup.py
@@ -0,0 +1,13 @@
+from distutils.core import setup
+
+setup(
+    name='log_helper',
+    version='0.2',
+    py_modules=["log_helper", "config"],
+    install_requires=['pyyaml'],
+    python_requires='>=3.6',
+    author='Roman Bubyr',
+    author_email='rbubyr@gmail.com',
+    description='Openstack log helper tool',
+    scripts=['log_helper.py'],
+)