aipmodel 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aipmodel-0.2.0/PKG-INFO +8 -0
- aipmodel-0.2.0/README.md +0 -0
- aipmodel-0.2.0/aipmodel/__init__.py +1 -0
- aipmodel-0.2.0/aipmodel/registry.py +11 -0
- aipmodel-0.2.0/aipmodel.egg-info/PKG-INFO +8 -0
- aipmodel-0.2.0/aipmodel.egg-info/SOURCES.txt +9 -0
- aipmodel-0.2.0/aipmodel.egg-info/dependency_links.txt +1 -0
- aipmodel-0.2.0/aipmodel.egg-info/top_level.txt +1 -0
- aipmodel-0.2.0/setup.cfg +4 -0
- aipmodel-0.2.0/setup.py +13 -0
- aipmodel-0.2.0/tests/test_registry.py +10 -0
aipmodel-0.2.0/PKG-INFO
ADDED
aipmodel-0.2.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .registry import download_model, create_model, get_model, list_models
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
def download_model(model_id):
|
|
2
|
+
print(f"[SDK] Downloading model with ID: {model_id}")
|
|
3
|
+
|
|
4
|
+
def create_model(name):
|
|
5
|
+
print(f"[SDK] Creating model with name: {name}")
|
|
6
|
+
|
|
7
|
+
def get_model(model_id):
|
|
8
|
+
print(f"[SDK] Getting model with ID: {model_id}")
|
|
9
|
+
|
|
10
|
+
def list_models():
|
|
11
|
+
print("[SDK] Listing all models")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aipmodel
|
aipmodel-0.2.0/setup.cfg
ADDED
aipmodel-0.2.0/setup.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="aipmodel", # The name of the package that will be used to install it via pip
|
|
5
|
+
version="0.2.0", # Version number of the package
|
|
6
|
+
description="A simple SDK for managing ML models", # Short description of your package
|
|
7
|
+
author="AIP MLOPS Team", # Author's name
|
|
8
|
+
author_email="mohmmadweb@gmail.com", # Author's email address
|
|
9
|
+
url="https://github.com/AIP-MLOPS/model-registry", # URL to the GitHub repository
|
|
10
|
+
packages=find_packages(), # Automatically find packages to include
|
|
11
|
+
install_requires=[], # List dependencies here if your package has any
|
|
12
|
+
python_requires=">=3.6", # Python version requirement
|
|
13
|
+
)
|