ragbits-cli 0.2.0__tar.gz → 0.3.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.
- {ragbits_cli-0.2.0 → ragbits_cli-0.3.0}/.gitignore +5 -3
- {ragbits_cli-0.2.0 → ragbits_cli-0.3.0}/CHANGELOG.md +6 -0
- {ragbits_cli-0.2.0 → ragbits_cli-0.3.0}/PKG-INFO +3 -2
- ragbits_cli-0.3.0/py.typed +0 -0
- {ragbits_cli-0.2.0 → ragbits_cli-0.3.0}/pyproject.toml +3 -2
- {ragbits_cli-0.2.0 → ragbits_cli-0.3.0}/src/ragbits/cli/__init__.py +1 -4
- {ragbits_cli-0.2.0 → ragbits_cli-0.3.0}/README.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ragbits-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: A CLI application for ragbits - building blocks for rapid development of GenAI applications
|
|
5
5
|
Author-email: "deepsense.ai" <ragbits@deepsense.ai>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -14,10 +14,11 @@ Classifier: Operating System :: OS Independent
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
18
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
18
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
20
|
Requires-Python: >=3.10
|
|
20
|
-
Requires-Dist: ragbits-core==0.
|
|
21
|
+
Requires-Dist: ragbits-core==0.3.0
|
|
21
22
|
Requires-Dist: typer>=0.12.5
|
|
22
23
|
Description-Content-Type: text/markdown
|
|
23
24
|
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ragbits-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "A CLI application for ragbits - building blocks for rapid development of GenAI applications"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -27,10 +27,11 @@ classifiers = [
|
|
|
27
27
|
"Programming Language :: Python :: 3.10",
|
|
28
28
|
"Programming Language :: Python :: 3.11",
|
|
29
29
|
"Programming Language :: Python :: 3.12",
|
|
30
|
+
"Programming Language :: Python :: 3.13",
|
|
30
31
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
31
32
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
32
33
|
]
|
|
33
|
-
dependencies = ["typer>=0.12.5", "ragbits-core==0.
|
|
34
|
+
dependencies = ["typer>=0.12.5", "ragbits-core==0.3.0"]
|
|
34
35
|
|
|
35
36
|
[project.scripts]
|
|
36
37
|
ragbits = "ragbits.cli:main"
|
|
@@ -19,13 +19,10 @@ def main() -> None:
|
|
|
19
19
|
- if found it imports the `register` function from the `cli` module and calls it with the `app` object
|
|
20
20
|
- register function should add the CLI commands to the `app` object
|
|
21
21
|
"""
|
|
22
|
-
|
|
23
22
|
cli_enabled_modules = [
|
|
24
23
|
module
|
|
25
24
|
for module in pkgutil.iter_modules(ragbits.__path__)
|
|
26
|
-
if module.ispkg
|
|
27
|
-
and module.name != "cli"
|
|
28
|
-
and (Path(module.module_finder.path) / module.name / "cli.py").exists() # type: ignore
|
|
25
|
+
if module.ispkg and module.name != "cli" and (Path(module.module_finder.path) / module.name / "cli.py").exists() # type: ignore
|
|
29
26
|
]
|
|
30
27
|
|
|
31
28
|
for module in cli_enabled_modules:
|
|
File without changes
|