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.

27 lines
784 B

3 years ago
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='3.0.0',
  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. ],
  17. test_requires=[
  18. "future"
  19. ],
  20. include_package_data=True,
  21. classifiers=[
  22. 'Development Status :: 5 - Production/Stable',
  23. 'Intended Audience :: Developers',
  24. 'Programming Language :: Python :: 3.9'
  25. ]
  26. )