From a2f61f74051c15d849b243f4c74b4520ff3db307 Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Wed, 12 Feb 2025 23:36:40 +0100 Subject: [PATCH] comply with PEP 625: adjust README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0ac13f8..f9f73dc 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![LICENSE](https://img.shields.io/github/license/RecordEvolution/IMCtermite)](https://img.shields.io/github/license/RecordEvolution/IMCtermite) [![STARS](https://img.shields.io/github/stars/RecordEvolution/IMCtermite)](https://img.shields.io/github/stars/RecordEvolution/IMCtermite) ![CI Build Wheel](https://github.com/RecordEvolution/IMCtermite/actions/workflows/pypi-deploy.yml/badge.svg?branch=&event=push) -[![PYPI](https://img.shields.io/pypi/v/IMCtermite.svg)](https://pypi.org/project/IMCtermite/) +[![PYPI](https://img.shields.io/pypi/v/IMCtermite.svg)](https://pypi.org/project/imctermite/) # IMCtermite @@ -144,11 +144,11 @@ However, in a production environment, a proper installation of the module with #### Installation with pip The package is also available in the [Python Package Index](https://pypi.org) -at [IMCtermite](https://pypi.org/project/IMCtermite/). +at [imctermite](https://pypi.org/project/imctermite/). To install the latest version simply do ```Shell -python3 -m pip install IMCtermite +python3 -m pip install imctermite ``` which provides binary wheels for multiple architectures on _Windows_ and _Linux_ @@ -195,9 +195,9 @@ Given the `IMCtermite` module is available, we can import it and declare an inst of it by passing a _raw_ file to the constructor: ```Python -import IMCtermite +import imctermite -imcraw = IMCtermite.imctermite(b"sample/sampleA.raw") +imcraw = imctermite.imctermite(b"sample/sampleA.raw") ``` An example of how to create an instance and obtain the list of channels is: