setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import os
  2. from setuptools import setup, find_packages
  3. LONG_DESCRIPTION = """Django-Prometheus
  4. This library contains code to expose some monitoring metrics relevant
  5. to Django internals so they can be monitored by Prometheus.io.
  6. See https://github.com/korfuri/django-prometheus for usage
  7. instructions.
  8. """
  9. setup(
  10. name="django-prometheus",
  11. version="1.0.15",
  12. author="Uriel Corfa",
  13. author_email="uriel@corfa.fr",
  14. description=(
  15. "Django middlewares to monitor your application with Prometheus.io."),
  16. license="Apache",
  17. keywords="django monitoring prometheus",
  18. url="http://github.com/korfuri/django-prometheus",
  19. packages=find_packages(),
  20. test_suite="django_prometheus.tests",
  21. long_description=LONG_DESCRIPTION,
  22. install_requires=[
  23. "prometheus_client>=0.0.21",
  24. ],
  25. classifiers=[
  26. "Development Status :: 5 - Production/Stable",
  27. "Intended Audience :: Developers",
  28. "Intended Audience :: Information Technology",
  29. "Intended Audience :: System Administrators",
  30. "Programming Language :: Python :: 2",
  31. "Programming Language :: Python :: 2.7",
  32. "Programming Language :: Python :: 3",
  33. "Programming Language :: Python :: 3.3",
  34. "Programming Language :: Python :: 3.4",
  35. "Programming Language :: Python :: 3.5",
  36. "Framework :: Django",
  37. "Topic :: System :: Monitoring",
  38. "License :: OSI Approved :: Apache Software License",
  39. ],
  40. )