Roman Bubyr | 3c8300e | 2023-06-01 13:08:29 +0200 | [diff] [blame^] | 1 | from distutils.core import setup |
2 | |||||
3 | setup( | ||||
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 | ) |