diff options
author | Christopher Baines <mail@cbaines.net> | 2015-12-22 17:59:32 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2015-12-22 17:59:32 +0000 |
commit | bcc61110d5b76580a2da0d72d07de8efd7525292 (patch) | |
tree | 00d691a550156997acf793d84afc230f00153c3b /setup.py | |
download | python-prometheus-client-bcc61110d5b76580a2da0d72d07de8efd7525292.tar python-prometheus-client-bcc61110d5b76580a2da0d72d07de8efd7525292.tar.gz |
Import python-prometheus-client_0.0.13.orig.tar.gzupstream-0.0.13upstream
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..14f3489 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +import os +from setuptools import setup + +setup( + name = "prometheus_client", + version = "0.0.13", + author = "Brian Brazil", + author_email = "brian.brazil@robustperception.io", + description = ("Python client for the Prometheus monitoring system."), + long_description = ("See https://github.com/prometheus/client_python/blob/master/README.md for documentation."), + license = "Apache Software License 2.0", + keywords = "prometheus monitoring instrumentation client", + url = "https://github.com/prometheus/client_python", + packages=['prometheus_client', 'prometheus_client.bridge'], + test_suite="tests", + 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", + ], +) |