blob: e7788a42c3a6ff5df8066eed3e17e1ccd1c62370 [file] [log] [blame]
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"],
)