File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
""" A collection of tools to collect and manipulate prometheus metrics"""
2
2
3
3
__title__ = "prometheus-connect"
4
- __version__ = "0.0.1 "
4
+ __version__ = "0.0.2b1 "
5
5
6
6
from .prometheus_connect import *
7
7
from .metric import Metric
Original file line number Diff line number Diff line change 5
5
6
6
7
7
def get_install_requires ():
8
- with open (' requirements.txt' , 'r' ) as requirements_file :
8
+ with open (" requirements.txt" , "r" ) as requirements_file :
9
9
res = requirements_file .readlines ()
10
- return [req .split (' ' , maxsplit = 1 )[0 ] for req in res if req ]
10
+ return [req .split (" " , maxsplit = 1 )[0 ] for req in res if req ]
11
+
11
12
12
13
setuptools .setup (
13
14
name = "prometheus-api-client" ,
14
- version = "0.0.1 " ,
15
+ version = "0.0.2b1 " ,
15
16
author = "Anand Sanmukhani" ,
16
17
17
18
description = "A small python api to collect data from prometheus" ,
You can’t perform that action at this time.
0 commit comments