Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
57 lines (53 loc) · 2.08 KB

File metadata and controls

57 lines (53 loc) · 2.08 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
46
47
48
49
50
51
52
53
54
55
56
57
from os import path
import sys
from setuptools import setup
if sys.version_info >= (2, 7):
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
else: # Assuming we don't run setup in order to publish under python 2.6
long_description = "NA"
setup(
name="prometheus_client",
version="0.9.0",
author="Brian Brazil",
author_email="brian.brazil@robustperception.io",
description="Python client for the Prometheus monitoring system.",
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache Software License 2.0",
keywords="prometheus monitoring instrumentation client",
url="https://github.com/prometheus/client_python",
packages=[
'prometheus_client',
'prometheus_client.bridge',
'prometheus_client.openmetrics',
'prometheus_client.twisted',
],
extras_require={
'twisted': ['twisted'],
},
test_suite="tests",
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
options={'bdist_wheel': {'universal': '1'}},
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.