Logging handler to send logs to your OpenSearch cluster with bulk SSL. Forked from https://github.com/logzio/logzio-python-handler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
869 B

3 years ago
3 years ago
  1. #!/usr/bin/env python
  2. from setuptools import setup, find_packages
  3. setup(
  4. name="logzio-python-handler",
  5. version='4.0.2',
  6. description="Logging handler to send logs to your Logz.io account with bulk SSL",
  7. keywords="logging handler logz.io bulk https",
  8. author="roiravhon",
  9. maintainer="tamir-michaeli",
  10. mail="tamir.michaeli@logz.io",
  11. url="https://github.com/logzio/logzio-python-handler/",
  12. license="Apache License 2",
  13. packages=find_packages(),
  14. install_requires=[
  15. "requests>=2.27.0",
  16. "protobuf>=3.20.2",
  17. "opentelemetry-instrumentation-logging==0.32b0"
  18. ],
  19. test_requires=[
  20. "future"
  21. ],
  22. include_package_data=True,
  23. classifiers=[
  24. 'Development Status :: 5 - Production/Stable',
  25. 'Intended Audience :: Developers',
  26. 'Programming Language :: Python :: 3.9'
  27. ]
  28. )