Skip to content

Commit

Permalink
Merge pull request #17 from 4n4nd/v0.0.2
Browse files Browse the repository at this point in the history
Update version number for v0.0.2b1 release
  • Loading branch information
hemajv committed Jul 16, 2019
2 parents 9758495 + 5651e75 commit b46831f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion prometheus_api_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" A collection of tools to collect and manipulate prometheus metrics"""

__title__ = "prometheus-connect"
__version__ = "0.0.1"
__version__ = "0.0.2b1"

from .prometheus_connect import *
from .metric import Metric
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@


def get_install_requires():
with open('requirements.txt', 'r') as requirements_file:
with open("requirements.txt", "r") as requirements_file:
res = requirements_file.readlines()
return [req.split(' ', maxsplit=1)[0] for req in res if req]
return [req.split(" ", maxsplit=1)[0] for req in res if req]


setuptools.setup(
name="prometheus-api-client",
version="0.0.1",
version="0.0.2b1",
author="Anand Sanmukhani",
author_email="[email protected]",
description="A small python api to collect data from prometheus",
Expand Down

0 comments on commit b46831f

Please sign in to comment.