tensorstudio 0.0.1a0__py3-none-any.whl
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.
tensorstudio/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
__version__ = version("tensorstudio")
|
|
5
|
+
except PackageNotFoundError:
|
|
6
|
+
__version__ = "0.0.0"
|
|
7
|
+
|
|
8
|
+
def about() -> str:
|
|
9
|
+
return "TensorLib is a pre-alpha toolkit for tensor, AI, ML, and LLM workflows."
|
|
10
|
+
|
|
11
|
+
__all__ = ["__version__", "about"]
|
tensorstudio/cli.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
from tensorstudio import __version__, about
|
|
3
|
+
|
|
4
|
+
def main() -> None:
|
|
5
|
+
parser = argparse.ArgumentParser(prog="tensorstudio", description="TensorLib command-line interface.")
|
|
6
|
+
parser.add_argument("--version", action="store_true", help="Print the installed TensorLib version.")
|
|
7
|
+
args = parser.parse_args()
|
|
8
|
+
print(__version__ if args.version else about())
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tensorstudio
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: Early-stage tensor and model toolkit for AI, ML, and LLM workflows.
|
|
5
|
+
Project-URL: Homepage, https://github.com/YOUR_USERNAME/tensorlib
|
|
6
|
+
Project-URL: Repository, https://github.com/YOUR_USERNAME/tensorlib
|
|
7
|
+
Project-URL: Issues, https://github.com/YOUR_USERNAME/tensorlib/issues
|
|
8
|
+
Author: Ian
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: ai,deep-learning,llm,machine-learning,ml,tensor
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# TensorLib
|
|
24
|
+
|
|
25
|
+
TensorLib is an early-stage Python toolkit for tensor, AI, ML, and LLM workflows.
|
|
26
|
+
|
|
27
|
+
This package is currently pre-alpha. The first release provides package metadata, a versioned Python module, and a small CLI while the full framework is being built.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
tensorstudio/__init__.py,sha256=1-Cz37IVwx_7UHAJ6nK6YhMHc0AzyHf_g4iwFESQzSg,317
|
|
2
|
+
tensorstudio/cli.py,sha256=gUnZUm92Scm40b0qeiflAfSsrLcFjczkYd_3WkwdChc,384
|
|
3
|
+
tensorstudio-0.0.1a0.dist-info/METADATA,sha256=rSlXtgbSz_rDOkOVoRhRYd7D5_MoJAYc12K1DFSE10s,1226
|
|
4
|
+
tensorstudio-0.0.1a0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
5
|
+
tensorstudio-0.0.1a0.dist-info/entry_points.txt,sha256=MQq5CKgtB6SLJ3cmcDR_04b7nWDCRdQgvbcrq4Xhp1M,55
|
|
6
|
+
tensorstudio-0.0.1a0.dist-info/RECORD,,
|