| 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"], | |
| ) |