From a7e5aa89f5f4e82ae122e1c8bf6bb7ce48a16b79 Mon Sep 17 00:00:00 2001 From: gchure Date: Sun, 30 Jul 2023 17:05:47 -0700 Subject: [PATCH] Fixed installation instruction typo in readme and set version tag. This commit will be tagged to spin up a DOI generation on Zenodo. --- README.md | 13 ++----------- setup.py | 2 +- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 17a2915..8c1f508 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![Run tests](https://github.com/cremerlab/hplc-py/actions/workflows/pytest.yaml/badge.svg)](https://github.com/cremerlab/hplc-py/actions/workflows/pytest.yaml) [![codecov](https://codecov.io/gh/cremerlab/hplc-py/branch/main/graph/badge.svg?token=WXL50JVR6C)](https://codecov.io/gh/cremerlab/hplc-py) +[![PyPI version](https://badge.fury.io/py/hplc-py.svg)](https://badge.fury.io/py/hplc-py) # About **H**igh-**P**erformance **L**iquid **C**hromatography (HPLC) is an analytical @@ -14,22 +15,12 @@ HPLC the most time-consuming part of the quantification. # Installation -Hplc-Py is not yet *officially released*, but will installable via pip in the -very near future. +You can install `hplc-py` on pip: ``` $ pip install --upgrade hplc-py ``` - - - ## License This software is released under the GNU General Public License version 3 (GPLv3). The complete license is provided as `LICENSE.txt`, but a brief description is as follows: diff --git a/setup.py b/setup.py index 21a4525..5656f3f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import pathlib -__version__ = "0.1.0" +__version__ = "0.1.0.post1" # The directory containing this file HERE = pathlib.Path(__file__).parent