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
758 B

6 years ago
  1. #!/usr/bin/env python
  2. from setuptools import setup, find_packages
  3. setup(
  4. name="logzio-python-handler",
  5. version='2.0.6',
  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. author_email="roi@logz.io",
  10. url="https://github.com/logzio/logzio-python-handler/",
  11. license="Apache License 2",
  12. packages=find_packages(exclude=["tests"]),
  13. install_requires=[
  14. "requests"
  15. ],
  16. test_requires=[
  17. "future"
  18. ],
  19. include_package_data=True,
  20. classifiers=[
  21. 'Development Status :: 5 - Production/Stable',
  22. 'Intended Audience :: Developers',
  23. 'Programming Language :: Python :: 2.7'
  24. ]
  25. )