asi-server 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,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: asi-server
3
+ Version: 0.0.1
4
+ Summary: Compatibility alias for the AGILAB MCP/server 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,server,mcp,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-server
23
+
24
+ `asi-server` is a compatibility alias for the AGILAB MCP/server interface.
25
+
26
+ Install the canonical package for normal use:
27
+
28
+ ```bash
29
+ pip install agilab
30
+ agilab-mcp serve --once
31
+ ```
32
+
33
+ This alias depends on `agilab` and exposes an `asi-server` command that
34
+ delegates to `agilab_mcp.server.main`.
@@ -0,0 +1,13 @@
1
+ # asi-server
2
+
3
+ `asi-server` is a compatibility alias for the AGILAB MCP/server interface.
4
+
5
+ Install the canonical package for normal use:
6
+
7
+ ```bash
8
+ pip install agilab
9
+ agilab-mcp serve --once
10
+ ```
11
+
12
+ This alias depends on `agilab` and exposes an `asi-server` command that
13
+ delegates to `agilab_mcp.server.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-server"
7
+ version = "0.0.1"
8
+ description = "Compatibility alias for the AGILAB MCP/server 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", "server", "mcp", "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-server = "asi_server: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 MCP/server 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_mcp.server"), name)
12
+
13
+
14
+ def main(argv: list[str] | None = None) -> int:
15
+ """Delegate the ``asi-server`` console script to ``agilab-mcp``."""
16
+
17
+ from agilab_mcp.server import main as server_main
18
+
19
+ return int(server_main(argv) or 0)
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: asi-server
3
+ Version: 0.0.1
4
+ Summary: Compatibility alias for the AGILAB MCP/server 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,server,mcp,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-server
23
+
24
+ `asi-server` is a compatibility alias for the AGILAB MCP/server interface.
25
+
26
+ Install the canonical package for normal use:
27
+
28
+ ```bash
29
+ pip install agilab
30
+ agilab-mcp serve --once
31
+ ```
32
+
33
+ This alias depends on `agilab` and exposes an `asi-server` command that
34
+ delegates to `agilab_mcp.server.main`.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/asi_server/__init__.py
4
+ src/asi_server.egg-info/PKG-INFO
5
+ src/asi_server.egg-info/SOURCES.txt
6
+ src/asi_server.egg-info/dependency_links.txt
7
+ src/asi_server.egg-info/entry_points.txt
8
+ src/asi_server.egg-info/requires.txt
9
+ src/asi_server.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ asi-server = asi_server:main
@@ -0,0 +1 @@
1
+ agilab>=2026.6.19
@@ -0,0 +1 @@
1
+ asi_server