asi-cli 0.0.1__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.
asi_cli-0.0.1/PKG-INFO ADDED
@@ -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,13 @@
1
+ # asi-cli
2
+
3
+ `asi-cli` is a compatibility alias for the AGILAB command-line interface.
4
+
5
+ Install the canonical package for normal use:
6
+
7
+ ```bash
8
+ pip install agilab
9
+ agilab --version
10
+ ```
11
+
12
+ This alias depends on `agilab` and exposes an `asi-cli` command that delegates
13
+ to `agilab.lab_run.main`.
@@ -0,0 +1,34 @@
1
+ [build-system]
2
+ requires = ["setuptools>=80", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "asi-cli"
7
+ version = "0.0.1"
8
+ description = "Compatibility alias for the AGILAB command-line interface; install and use canonical agilab."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11,<3.14"
11
+ license = "BSD-3-Clause"
12
+ authors = [{ name = "Jean-Pierre Morard" }]
13
+ maintainers = [{ name = "Jean-Pierre Morard" }]
14
+ keywords = ["agilab", "asi", "cli", "compatibility"]
15
+ classifiers = [
16
+ "Development Status :: 4 - Beta",
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Programming Language :: Python :: 3.13",
22
+ ]
23
+ dependencies = ["agilab>=2026.6.19"]
24
+
25
+ [project.urls]
26
+ Documentation = "https://thalesgroup.github.io/agilab"
27
+ Source = "https://github.com/ThalesGroup/agilab"
28
+ Canonical = "https://pypi.org/project/agilab/"
29
+
30
+ [project.scripts]
31
+ asi-cli = "asi_cli:main"
32
+
33
+ [tool.setuptools.packages.find]
34
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/asi_cli/__init__.py
4
+ src/asi_cli.egg-info/PKG-INFO
5
+ src/asi_cli.egg-info/SOURCES.txt
6
+ src/asi_cli.egg-info/dependency_links.txt
7
+ src/asi_cli.egg-info/entry_points.txt
8
+ src/asi_cli.egg-info/requires.txt
9
+ src/asi_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ asi-cli = asi_cli:main
@@ -0,0 +1 @@
1
+ agilab>=2026.6.19
@@ -0,0 +1 @@
1
+ asi_cli