chore: bump version to 1.0.6
This commit is contained in:
parent
bc59792c00
commit
d9e996a266
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mlModelSaver",
|
"name": "mlModelSaver",
|
||||||
"version": "1.0.5",
|
"version": "1.0.6",
|
||||||
"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",
|
||||||
|
|||||||
29
setup.py
29
setup.py
@ -2,12 +2,31 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='mlModelSaver',
|
name='mlModelSaver',
|
||||||
version='1.0.5',
|
version='1.0.6',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
description='Make life easier for save and serving ml models',
|
description='Make life easier for saving and serving ML models',
|
||||||
|
long_description=open('README.md').read(), # Assumes you have a README.md file
|
||||||
|
long_description_content_type='text/markdown', # Specify the format of the long description
|
||||||
author='Jason Jafari',
|
author='Jason Jafari',
|
||||||
author_email='me@jasonjafari.com.com',
|
author_email='me@jasonjafari.com',
|
||||||
install_requires=[
|
url='https://github.com/smartdev-ca/mlModelSaver', # URL to your package repository
|
||||||
# List of dependencies
|
classifiers=[
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'Intended Audience :: Science/Research',
|
||||||
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
||||||
|
'License :: MIT License', # Specify your license
|
||||||
|
'Programming Language :: Python :: 3.9 or above',
|
||||||
],
|
],
|
||||||
|
keywords='machine learning model saving serving', # Keywords for your package
|
||||||
|
install_requires=[
|
||||||
|
# List of dependencies, e.g.:
|
||||||
|
# 'numpy>=1.18.0',
|
||||||
|
# 'scikit-learn>=0.22.0',
|
||||||
|
],
|
||||||
|
project_urls={ # Optional
|
||||||
|
'Documentation': 'https://github.com/smartdev-ca/mlModelSaver/wiki',
|
||||||
|
'Source': 'https://github.com/smartdev-ca/mlModelSaver',
|
||||||
|
'Tracker': 'https://github.com/smartdev-ca/mlModelSaver/issues',
|
||||||
|
},
|
||||||
)
|
)
|
||||||
Loading…
x
Reference in New Issue
Block a user