diff --git a/README.md b/README.md index 227fedbe..b236c6d7 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ pip install geochemistrypi Download the latest version to avoid some old version issues, such as dependency downloading. ``` -pip install "geochemistrypi==0.6.0" +pip install "geochemistrypi==0.6.1" ``` One instruction to download on **Jupyter Notebook** or **Google Colab**. @@ -81,7 +81,7 @@ One instruction to download on **Jupyter Notebook** or **Google Colab**. ``` Download the latest version to avoid some old version issues, such as dependency downloading. ``` -!pip install "geochemistrypi==0.6.0" +!pip install "geochemistrypi==0.6.1" ``` Check the downloaded version of our software: diff --git a/geochemistrypi/_version.py b/geochemistrypi/_version.py index 906d362f..43c4ab00 100644 --- a/geochemistrypi/_version.py +++ b/geochemistrypi/_version.py @@ -1 +1 @@ -__version__ = "0.6.0" +__version__ = "0.6.1" diff --git a/geochemistrypi/data_mining/utils/base.py b/geochemistrypi/data_mining/utils/base.py index 31a01124..7f9f0f69 100644 --- a/geochemistrypi/data_mining/utils/base.py +++ b/geochemistrypi/data_mining/utils/base.py @@ -140,7 +140,7 @@ def install_package(package_name: str) -> None: """ import subprocess - subprocess.check_call(["python", "-m", "pip", "install", package_name]) + subprocess.check_call(["python", "-m", "pip", "install", "--quiet", package_name]) def clear_output() -> None: diff --git a/pyproject.toml b/pyproject.toml index c896ad0f..95e9cb2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,22 @@ build-backend = "hatchling.build" [project] name = "geochemistrypi" -version = "0.6.0" +version = "0.6.1" authors = [ - { name="Can He", email="sanyhew1097618435@163.com" }, + { name="Can He", email="sanyhew1097618435@163.com"}, + { name="Jianhao Sun", email="sjh20171502@gmail.com"}, + { name="Jianming Zhao", email="zhaojianming@zju.edu.cn"}, + { name="Yang Lyu", email="lyuyang1007@zju.edu.cn"} ] -maintainers = [] -description = "A highly automated machine learning Python framework for data-driven geochemistry discovery" +maintainers = [ + { name="Can He", email="sanyhew1097618435@163.com"}, + { name="Jianhao Sun", email="sjh20171502@gmail.com"}, + { name="Jianming Zhao", email="zhaojianming@zju.edu.cn"}, + { name="Yongkang Shan", email="kk1361207571@163.com"}, + { name="Mengqi Gao", email="2534671415@qq.com"} +] +description = "A highly automated machine learning Python framework dedicating to build up MLOps level 1 software product for data-driven geochemistry discovery" +keywords = ["Geochemistry π", "Automated", "Machine Learning", "MLOps", "Geochemistry Discovery", "Continuous Training", "Machine Learning Lifecycle Management", "Model Inference", "Data Mining"] readme = "README.md" license = { file="LICENSE" } requires-python = "~=3.9"