diff --git a/README.md b/README.md index 5a26cd2..a381ea3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,16 @@ +

+ usmerge logo +

+ # Unsupervised Merge +[![PyPI version](https://badge.fury.io/py/usmerge.svg)](https://badge.fury.io/py/usmerge) +[![Python versions](https://img.shields.io/pypi/pyversions/usmerge.svg)](https://pypi.org/project/usmerge/) +[![License](https://img.shields.io/github/license/wanghui5801/usmerge.svg)](https://github.com/wanghui5801/usmerge/blob/main/LICENSE) +[![Downloads](https://static.pepy.tech/badge/usmerge)](https://pepy.tech/project/usmerge) +[![GitHub last commit](https://img.shields.io/github/last-commit/wanghui5801/usmerge.svg)](https://github.com/wanghui5801/usmerge/commits/main) + + A simple Python package for one-dimensional data clustering, implementing various clustering algorithms including traditional and novel approaches. ## Installation diff --git a/setup.py b/setup.py index 23a0095..b8960fa 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="usmerge", - version="0.1.2", + version="0.2.0", description="A simple package to merge one-dimension data by unsupervised method", author="HuiWang", author_email="huiw1128@gmail.com", diff --git a/usmerge/__init__.py b/usmerge/__init__.py index e129b52..b95beb2 100644 --- a/usmerge/__init__.py +++ b/usmerge/__init__.py @@ -10,6 +10,6 @@ hierarchical_density_merge ) -__version__ = "0.1.2" +__version__ = "0.2.0" __author__ = "HuiWang" __email__ = "huiw1128@gmail.com" \ No newline at end of file