asilab 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.
asilab/__init__.py ADDED
@@ -0,0 +1,23 @@
1
+ """Compatibility alias for the canonical ``agilab`` package."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from importlib import import_module
6
+ from importlib.metadata import PackageNotFoundError, version
7
+ from typing import Any
8
+
9
+ try:
10
+ __version__ = version("asilab")
11
+ except PackageNotFoundError: # pragma: no cover - source tree fallback
12
+ __version__ = "0.0.0"
13
+
14
+
15
+ def __getattr__(name: str) -> Any:
16
+ return getattr(import_module("agilab"), name)
17
+
18
+
19
+ def main() -> None:
20
+ print(
21
+ "asilab is a compatibility alias for AGILAB. "
22
+ "Use `pip install agilab` and the `agilab` command."
23
+ )
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: asilab
3
+ Version: 0.0.1
4
+ Summary: Compatibility alias for AGILAB; install and use the canonical agilab package.
5
+ Project-URL: Documentation, https://thalesgroup.github.io/agilab
6
+ Project-URL: Source, https://github.com/ThalesGroup/agilab
7
+ Project-URL: Repository, https://github.com/ThalesGroup/agilab
8
+ Project-URL: Issues, https://github.com/ThalesGroup/agilab/issues
9
+ Author: Jean-Pierre Morard
10
+ Maintainer: Jean-Pierre Morard
11
+ License-Expression: BSD-3-Clause
12
+ Keywords: agilab,ai,alias,machine-learning,reproducible-research
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Operating System :: POSIX :: Linux
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Requires-Python: <3.14,>=3.11
23
+ Requires-Dist: agilab>=2026.6.18
24
+ Description-Content-Type: text/markdown
25
+
26
+ # asilab
27
+
28
+ `asilab` is a compatibility alias for the canonical
29
+ [`agilab`](https://pypi.org/project/agilab/) package.
30
+
31
+ Install `agilab` directly for normal use:
32
+
33
+ ```bash
34
+ pip install agilab
35
+ ```
36
+
37
+ Installing `asilab` also installs `agilab`, and the `asilab` console command
38
+ prints a short pointer to the canonical package.
@@ -0,0 +1,5 @@
1
+ asilab/__init__.py,sha256=95IDJNtzERCBvwaMVLp_8iAJBeUnJVgzWiNX7VrsCIU,603
2
+ asilab-0.0.1.dist-info/METADATA,sha256=K62qx5j3bOXbk4wnAtMaBko6ZkwR19epu_PoRvCOI1E,1394
3
+ asilab-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ asilab-0.0.1.dist-info/entry_points.txt,sha256=t4CX2k8Hjgf4s2o8LSfjvXvq9dZ1TxC2RrXkyU6G0TU,39
5
+ asilab-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ asilab = asilab:main