asi-cli 0.0.1__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.
asi_cli/__init__.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Compatibility alias for the canonical AGILAB command-line interface."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from importlib import import_module
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def __getattr__(name: str):
|
|
11
|
+
return getattr(import_module("agilab"), name)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def main(argv: list[str] | None = None) -> int:
|
|
15
|
+
"""Delegate the ``asi-cli`` console script to ``agilab``."""
|
|
16
|
+
|
|
17
|
+
from agilab.lab_run import main as agilab_main
|
|
18
|
+
|
|
19
|
+
return int(agilab_main(argv) or 0)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asi-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Compatibility alias for the AGILAB command-line interface; install and use canonical agilab.
|
|
5
|
+
Author: Jean-Pierre Morard
|
|
6
|
+
Maintainer: Jean-Pierre Morard
|
|
7
|
+
License-Expression: BSD-3-Clause
|
|
8
|
+
Project-URL: Documentation, https://thalesgroup.github.io/agilab
|
|
9
|
+
Project-URL: Source, https://github.com/ThalesGroup/agilab
|
|
10
|
+
Project-URL: Canonical, https://pypi.org/project/agilab/
|
|
11
|
+
Keywords: agilab,asi,cli,compatibility
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Requires-Python: <3.14,>=3.11
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
Requires-Dist: agilab>=2026.6.19
|
|
21
|
+
|
|
22
|
+
# asi-cli
|
|
23
|
+
|
|
24
|
+
`asi-cli` is a compatibility alias for the AGILAB command-line interface.
|
|
25
|
+
|
|
26
|
+
Install the canonical package for normal use:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install agilab
|
|
30
|
+
agilab --version
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
This alias depends on `agilab` and exposes an `asi-cli` command that delegates
|
|
34
|
+
to `agilab.lab_run.main`.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
asi_cli/__init__.py,sha256=xhCUH8C6aljJls-28wOjGaEYazduUabB9Lp0SXhTI6U,458
|
|
2
|
+
asi_cli-0.0.1.dist-info/METADATA,sha256=cpSZVrqaEm2Knm6X-Puhi9v1-ITpfLZrDRgyQOqKyKM,1143
|
|
3
|
+
asi_cli-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
4
|
+
asi_cli-0.0.1.dist-info/entry_points.txt,sha256=CowN8wM0z3sBuFFn3Aoc4OLs8GZCmSOxrTFrUvLFPt0,41
|
|
5
|
+
asi_cli-0.0.1.dist-info/top_level.txt,sha256=TzFt8gMGbNRhLSwOl5cTRAwRyDiEv9SYDgFhIUqHtDE,8
|
|
6
|
+
asi_cli-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
asi_cli
|