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.

31 lines
923 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.3',
  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. ],
  18. extras_require={
  19. "opentelemetry-logging": ["opentelemetry-instrumentation-logging==0.39b0"]
  20. },
  21. test_requires=[
  22. "future"
  23. ],
  24. include_package_data=True,
  25. classifiers=[
  26. 'Development Status :: 5 - Production/Stable',
  27. 'Intended Audience :: Developers',
  28. 'Programming Language :: Python :: 3.9'
  29. ]
  30. )