33 lines
1.4 KiB
Python
33 lines
1.4 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='jrjModelRegistry',
|
|
version='1.0.35',
|
|
packages=find_packages(),
|
|
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_content_type='text/markdown', # Specify the format of the long description
|
|
author='Jason Jafari',
|
|
author_email='me@jasonjafari.com',
|
|
url='https://gitea.root.sarava.dev/JRJ/model-registry', # URL to your package repository
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Science/Research',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
'License :: OSI Approved :: MIT License', # Correct classifier for the MIT License
|
|
'Programming Language :: Python :: 3.12',
|
|
],
|
|
keywords='machine learning model saving serving', # Keywords for your package
|
|
install_requires=[
|
|
'dill>=0.3.8',
|
|
'jaraco.functools>=4.0.1'
|
|
],
|
|
project_urls={ # Optional
|
|
'Documentation': 'https://gitea.root.sarava.dev/JRJ/model-registry/blob/main/DOCS.md',
|
|
'Source': 'https://gitea.root.sarava.dev/JRJ/model-registry',
|
|
'Tracker': 'https://gitea.root.sarava.dev/JRJ/model-registry/issues',
|
|
},
|
|
)
|