blob: e7788a42c3a6ff5df8066eed3e17e1ccd1c62370 [file] [log] [blame]
Roman Bubyr3c8300e2023-06-01 13:08:29 +02001from distutils.core import setup
2
3setup(
stavrovska28772bc2024-05-22 09:33:50 +02004 name="log_helper",
5 version="0.2",
Roman Bubyr3c8300e2023-06-01 13:08:29 +02006 py_modules=["log_helper", "config"],
stavrovska28772bc2024-05-22 09:33:50 +02007 install_requires=["pyyaml"],
8 python_requires=">=3.6",
9 author="Roman Bubyr",
10 author_email="rbubyr@gmail.com",
11 description="Openstack log helper tool",
12 scripts=["log_helper.py"],
Roman Bubyr3c8300e2023-06-01 13:08:29 +020013)