Skip to content

Commit

Permalink
fix: patches error in readme, patches typos in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Feb 20, 2023
1 parent c419b22 commit 3091dc8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion src/pymsx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Entrypoint to onbelay package"""
"""Entrypoint to pymsx package."""

__version__ = "0.0.1"
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Onbelay test suites"""
"""pymsx test suites."""
2 changes: 1 addition & 1 deletion tests/test_pymsx.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Test onbelay
"""Test pymsx
Test package level functionality.
"""
Expand Down

0 comments on commit 3091dc8

Please sign in to comment.