blob: 5e73800c0d200221f92df1e01c526f62f020462d [file] [log] [blame]
Roman Bubyr3c8300e2023-06-01 13:08:29 +02001from distutils.core import setup
2
3setup(
4 name='log_helper',
5 version='0.2',
6 py_modules=["log_helper", "config"],
7 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'],
13)