forked from korfuri/django-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (41 loc) · 1.55 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
from setuptools import setup, find_packages
LONG_DESCRIPTION = """django-exporter
This library contains code to expose some monitoring metrics relevant
to Django internals so they can be monitored by Prometheus.
See https://github.com/prezi/django-exporter for usage instructions.
"""
setup(
name="django-exporter",
version="2.3.0",
author="David Guerrero",
author_email="[email protected]",
description="Export Django metrics for Prometheus.",
license="Apache",
keywords="django monitoring prometheus",
url="http://github.com/prezi/django-exporter",
packages=find_packages(),
test_suite="django_prometheus.tests",
long_description=LONG_DESCRIPTION,
install_requires=[
"django-redis>=4.8,<=4.10.0",
"prometheus_client>=0.5.0,<=0.12.0"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)