-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1.02 KB
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
import os
from setuptools import setup
LONG_DESCRIPTION = """GC-Prometheus
Exports metrics about the Python garbage collector for Prometheus.io.
See https://github.com/korfuri/python-gc-prometheus for usage
instructions.
"""
setup(
name="gc-prometheus",
version="0.1.0",
author="Uriel Corfa",
author_email="uriel@corfa.fr",
description=(
"Exports garbage collection metrics for Prometheus.io."),
license="Apache",
keywords="python gc monitoring prometheus",
url="http://github.com/korfuri/python-gc-prometheus",
packages=["gc_prometheus"],
test_suite="tests",
long_description=LONG_DESCRIPTION,
install_requires=[
"prometheus_client>=0.0.9",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)