base-model-tools 1.0.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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.1
2
+ Name: base_model_tools
3
+ Version: 1.0.0
4
+ Summary: Nearly Human Base Model Tools dependency for training, saving, loading, deploying, and inferencing models.
5
+ Author: Nearly Human
6
+ Author-email: support@nearlyhuman.ai
7
+ Keywords: nearlyhuman,nearly human,model,tools
8
+ Requires-Python: >=3.8.10
9
+ Requires-Dist: mlflow-skinny>=2.8.0
@@ -0,0 +1,2 @@
1
+ # base-model-tools
2
+ Contains the base model tools required for training, saving, loading, deploying, and inferencing Nearly Human AI Models.
@@ -0,0 +1,3 @@
1
+ from base_model_tools import *
2
+
3
+ __version__ = '1.0.0'
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.1
2
+ Name: base_model_tools
3
+ Version: 1.0.0
4
+ Summary: Nearly Human Base Model Tools dependency for training, saving, loading, deploying, and inferencing models.
5
+ Author: Nearly Human
6
+ Author-email: support@nearlyhuman.ai
7
+ Keywords: nearlyhuman,nearly human,model,tools
8
+ Requires-Python: >=3.8.10
9
+ Requires-Dist: mlflow-skinny>=2.8.0
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ base_model_tools/__init__.py
5
+ base_model_tools.egg-info/PKG-INFO
6
+ base_model_tools.egg-info/SOURCES.txt
7
+ base_model_tools.egg-info/dependency_links.txt
8
+ base_model_tools.egg-info/requires.txt
9
+ base_model_tools.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mlflow-skinny>=2.8.0
@@ -0,0 +1 @@
1
+ base_model_tools
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ build-backend = "setuptools.build_meta"
3
+ requires = ["setuptools", "wheel", "requests"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,25 @@
1
+ from setuptools import find_packages, setup
2
+
3
+ # Setup custom import schema
4
+ # cortex.__version__
5
+ import os
6
+ import sys
7
+ current = os.path.dirname(os.path.realpath(__file__))
8
+ sys.path.append(current)
9
+
10
+ from base_model_tools import __version__
11
+
12
+ setup(
13
+ name = 'base_model_tools',
14
+ version = __version__,
15
+ packages = find_packages(exclude=['tests*']),
16
+ author = 'Nearly Human',
17
+ author_email = 'support@nearlyhuman.ai',
18
+ description = 'Nearly Human Base Model Tools dependency for training, saving, loading, deploying, and inferencing models.',
19
+ keywords = 'nearlyhuman, nearly human, model, tools',
20
+
21
+ python_requires = '>=3.8.10',
22
+ install_requires = [
23
+ 'mlflow-skinny>=2.8.0',
24
+ ]
25
+ )