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.

24 lines
684 B

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