diff --git a/README.md b/README.md index e78d173..149f9d4 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,10 @@ [![PyPI](https://img.shields.io/pypi/v/pymsx?style=flat-square)](https://pypi.org/project/pymsx/) [![Downloads](https://pepy.tech/badge/pymsx)](https://pepy.tech/project/pymsx) -[![Documentation](assets/interrogate_badge.svg)](https://github.com/Mosaics-ai/pymsx) This repository contains the source code for Mosaics AI's official python client. This client is currently in pre-alpha version, so feedback is always welcome! -You are welcome to file an issue here for general use cases. You can also contact Databricks Support [here](help.mosaics.ai). +You are welcome to file an issue here for general use cases. You can also contact Mosaics Support [here](help.mosaics.ai). ## Requirements diff --git a/pyproject.toml b/pyproject.toml index 93a9e45..269d717 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -143,6 +143,16 @@ badge-format = "svg" format = "md" version = "literal: src/pymsx/__init__.py: __version__" +[tool.semantic_release] +version_variable = [ + "src/pymsx/__init__.py:__version__", + "pyproject.toml:version" +] +branch = "main" +upload_to_pypi = false +upload_to_release = true +build_command = "pip install poetry && poetry build" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" diff --git a/src/pymsx/__init__.py b/src/pymsx/__init__.py index 5228c5a..0b154fd 100644 --- a/src/pymsx/__init__.py +++ b/src/pymsx/__init__.py @@ -1,3 +1,3 @@ -"""Entrypoint to onbelay package""" +"""Entrypoint to pymsx package.""" __version__ = "0.0.1" diff --git a/tests/__init__.py b/tests/__init__.py index d3fc4c6..5d87798 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1 +1 @@ -"""Onbelay test suites""" +"""pymsx test suites.""" diff --git a/tests/test_pymsx.py b/tests/test_pymsx.py index 15e65f5..573e421 100644 --- a/tests/test_pymsx.py +++ b/tests/test_pymsx.py @@ -1,4 +1,4 @@ -"""Test onbelay +"""Test pymsx Test package level functionality. """