asi-core 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.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: asi-core
3
+ Version: 0.0.1
4
+ Summary: Compatibility alias for AGI Core; install and use the canonical agi-core 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: agi-core,agilab,alias,machine-learning,reproducibility
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
+ Classifier: Programming Language :: Python :: 3.14
23
+ Requires-Python: >=3.11
24
+ Requires-Dist: agi-core>=2026.6.19
25
+ Description-Content-Type: text/markdown
26
+
27
+ # asi-core
28
+
29
+ `asi-core` is a compatibility alias for the canonical
30
+ [`agi-core`](https://pypi.org/project/agi-core/) package.
31
+
32
+ Install `agi-core` directly for normal use:
33
+
34
+ ```bash
35
+ pip install agi-core
36
+ ```
37
+
38
+ Installing `asi-core` also installs `agi-core`, and the `asi-core` console
39
+ command prints a short pointer to the canonical package.
@@ -0,0 +1,13 @@
1
+ # asi-core
2
+
3
+ `asi-core` is a compatibility alias for the canonical
4
+ [`agi-core`](https://pypi.org/project/agi-core/) package.
5
+
6
+ Install `agi-core` directly for normal use:
7
+
8
+ ```bash
9
+ pip install agi-core
10
+ ```
11
+
12
+ Installing `asi-core` also installs `agi-core`, and the `asi-core` console
13
+ command prints a short pointer to the canonical package.
@@ -0,0 +1,39 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "asi-core"
7
+ version = "0.0.1"
8
+ description = "Compatibility alias for AGI Core; install and use the canonical agi-core package."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "BSD-3-Clause"
12
+ authors = [{ name = "Jean-Pierre Morard" }]
13
+ maintainers = [{ name = "Jean-Pierre Morard" }]
14
+ keywords = ["agi-core", "agilab", "alias", "machine-learning", "reproducibility"]
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
+ "Programming Language :: Python :: 3.14",
23
+ "Operating System :: MacOS",
24
+ "Operating System :: Microsoft :: Windows",
25
+ "Operating System :: POSIX :: Linux",
26
+ ]
27
+ dependencies = ["agi-core>=2026.6.19"]
28
+
29
+ [project.urls]
30
+ Documentation = "https://thalesgroup.github.io/agilab"
31
+ Source = "https://github.com/ThalesGroup/agilab"
32
+ Repository = "https://github.com/ThalesGroup/agilab"
33
+ Issues = "https://github.com/ThalesGroup/agilab/issues"
34
+
35
+ [project.scripts]
36
+ asi-core = "asi_core:main"
37
+
38
+ [project.entry-points."agi_env.runtime_packages"]
39
+ asi-core = "agi_core.agi_env_runtime:RUNTIME_PACKAGE_SPEC"
@@ -0,0 +1,23 @@
1
+ """Compatibility alias for the canonical ``agi_core`` 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("asi-core")
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("agi_core"), name)
17
+
18
+
19
+ def main() -> None:
20
+ print(
21
+ "asi-core is a compatibility alias for AGI Core. "
22
+ "Use `pip install agi-core` and import `agi_core`."
23
+ )