chore: bump version to 1.0.28

This commit is contained in:
Jason Jafari 2024-06-16 18:08:27 -04:00
parent 84ff1bcf1c
commit 25e41556b9
4 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,7 @@
# mlModelSaver documentation # mlModelSaver documentation
## [Tutorial youtube](https://www.youtube.com/watch?v=fchTlNk2P8s)
Introducing **[mlModelSaver](https://pypi.org/project/mlModelSaver/)** a streamlined Python module designed for data scientists and developers who seek a straightforward solution for model saving and serving. Introducing **[mlModelSaver](https://pypi.org/project/mlModelSaver/)** a streamlined Python module designed for data scientists and developers who seek a straightforward solution for model saving and serving.

View File

@ -2,6 +2,8 @@
## Project page in pypi ## Project page in pypi
[mlModelSaver](https://pypi.org/project/mlModelSaver/) [mlModelSaver](https://pypi.org/project/mlModelSaver/)
## [Tutorial youtube](https://www.youtube.com/watch?v=fchTlNk2P8s)
## [Documentation](https://pypi.org/project/mlModelSaver/)
## How to install virtualenv ## How to install virtualenv

View File

@ -1,6 +1,6 @@
{ {
"name": "mlModelSaver", "name": "mlModelSaver",
"version": "1.0.27", "version": "1.0.28",
"description": "Make life easier for save and serving ml models", "description": "Make life easier for save and serving ml models",
"main": "index.js", "main": "index.js",
"repository": "git@github.com:smartdev-ca/mlModelSaver.git", "repository": "git@github.com:smartdev-ca/mlModelSaver.git",

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='mlModelSaver', name='mlModelSaver',
version='1.0.27', version='1.0.28',
packages=find_packages(), packages=find_packages(),
description='Make life easier for saving and serving ML models', description='Make life easier for saving and serving ML models',
long_description=open('DOCS.md').read(), # Assumes you have a README.md file long_description=open('DOCS.md').read(), # Assumes you have a README.md file