gopher-mcp-python-native-darwin-arm64 0.1.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.
Files changed (19) hide show
  1. gopher_mcp_python_native_darwin_arm64-0.1.1/PKG-INFO +59 -0
  2. gopher_mcp_python_native_darwin_arm64-0.1.1/README.md +38 -0
  3. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/__init__.py +24 -0
  4. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-event.0.1.0.dylib +0 -0
  5. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-event.0.dylib +0 -0
  6. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-event.dylib +0 -0
  7. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-logging.dylib +0 -0
  8. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp.0.1.0.dylib +0 -0
  9. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp.0.dylib +0 -0
  10. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp.dylib +0 -0
  11. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-orch.0.1.1.dylib +0 -0
  12. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-orch.0.dylib +0 -0
  13. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64/lib/libgopher-orch.dylib +0 -0
  14. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64.egg-info/PKG-INFO +59 -0
  15. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64.egg-info/SOURCES.txt +17 -0
  16. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64.egg-info/dependency_links.txt +1 -0
  17. gopher_mcp_python_native_darwin_arm64-0.1.1/gopher_mcp_python_native_darwin_arm64.egg-info/top_level.txt +1 -0
  18. gopher_mcp_python_native_darwin_arm64-0.1.1/pyproject.toml +36 -0
  19. gopher_mcp_python_native_darwin_arm64-0.1.1/setup.cfg +4 -0
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: gopher-mcp-python-native-darwin-arm64
3
+ Version: 0.1.1
4
+ Summary: Native library for gopher-mcp-python (macOS ARM64)
5
+ Author-email: Gopher Security <dev@gophersecurity.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/GopherSecurity/gopher-mcp-python
8
+ Project-URL: Repository, https://github.com/GopherSecurity/gopher-mcp-python
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: MacOS
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+
22
+ # gopher-mcp-python-native-darwin-arm64
23
+
24
+ Native library package for gopher-mcp-python (macOS ARM64 / Apple Silicon).
25
+
26
+ ## Installation
27
+
28
+ This package is automatically installed as a dependency of `gopher-mcp-python` on compatible platforms.
29
+
30
+ ```bash
31
+ pip install gopher-mcp-python
32
+ ```
33
+
34
+ ## Manual Installation
35
+
36
+ ```bash
37
+ pip install gopher-mcp-python-native-darwin-arm64
38
+ ```
39
+
40
+ ## Platform
41
+
42
+ - **OS**: macOS
43
+ - **Architecture**: ARM64 (Apple Silicon - M1, M2, M3, etc.)
44
+
45
+ ## Usage
46
+
47
+ This package is not meant to be used directly. It provides the native library for the main `gopher-mcp-python` package.
48
+
49
+ ```python
50
+ from gopher_mcp_python import GopherAgent
51
+
52
+ agent = GopherAgent.create_with_server_config(provider, model, config)
53
+ answer = agent.run("Hello!")
54
+ agent.dispose()
55
+ ```
56
+
57
+ ## License
58
+
59
+ Apache License 2.0
@@ -0,0 +1,38 @@
1
+ # gopher-mcp-python-native-darwin-arm64
2
+
3
+ Native library package for gopher-mcp-python (macOS ARM64 / Apple Silicon).
4
+
5
+ ## Installation
6
+
7
+ This package is automatically installed as a dependency of `gopher-mcp-python` on compatible platforms.
8
+
9
+ ```bash
10
+ pip install gopher-mcp-python
11
+ ```
12
+
13
+ ## Manual Installation
14
+
15
+ ```bash
16
+ pip install gopher-mcp-python-native-darwin-arm64
17
+ ```
18
+
19
+ ## Platform
20
+
21
+ - **OS**: macOS
22
+ - **Architecture**: ARM64 (Apple Silicon - M1, M2, M3, etc.)
23
+
24
+ ## Usage
25
+
26
+ This package is not meant to be used directly. It provides the native library for the main `gopher-mcp-python` package.
27
+
28
+ ```python
29
+ from gopher_mcp_python import GopherAgent
30
+
31
+ agent = GopherAgent.create_with_server_config(provider, model, config)
32
+ answer = agent.run("Hello!")
33
+ agent.dispose()
34
+ ```
35
+
36
+ ## License
37
+
38
+ Apache License 2.0
@@ -0,0 +1,24 @@
1
+ """
2
+ Native library package for gopher-mcp-python (macOS ARM64).
3
+
4
+ This package contains the native gopher-mcp-python library for macOS on Apple Silicon.
5
+ """
6
+
7
+ import os
8
+ from pathlib import Path
9
+
10
+ __version__ = "0.1.1"
11
+
12
+ # Platform identifier
13
+ PLATFORM = "darwin"
14
+ ARCH = "arm64"
15
+
16
+
17
+ def get_lib_path() -> Path:
18
+ """Get the path to the native library directory."""
19
+ return Path(__file__).parent / "lib"
20
+
21
+
22
+ def get_library_file() -> Path:
23
+ """Get the path to the native library file."""
24
+ return get_lib_path() / "libgopher-orch.dylib"
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: gopher-mcp-python-native-darwin-arm64
3
+ Version: 0.1.1
4
+ Summary: Native library for gopher-mcp-python (macOS ARM64)
5
+ Author-email: Gopher Security <dev@gophersecurity.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/GopherSecurity/gopher-mcp-python
8
+ Project-URL: Repository, https://github.com/GopherSecurity/gopher-mcp-python
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: MacOS
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+
22
+ # gopher-mcp-python-native-darwin-arm64
23
+
24
+ Native library package for gopher-mcp-python (macOS ARM64 / Apple Silicon).
25
+
26
+ ## Installation
27
+
28
+ This package is automatically installed as a dependency of `gopher-mcp-python` on compatible platforms.
29
+
30
+ ```bash
31
+ pip install gopher-mcp-python
32
+ ```
33
+
34
+ ## Manual Installation
35
+
36
+ ```bash
37
+ pip install gopher-mcp-python-native-darwin-arm64
38
+ ```
39
+
40
+ ## Platform
41
+
42
+ - **OS**: macOS
43
+ - **Architecture**: ARM64 (Apple Silicon - M1, M2, M3, etc.)
44
+
45
+ ## Usage
46
+
47
+ This package is not meant to be used directly. It provides the native library for the main `gopher-mcp-python` package.
48
+
49
+ ```python
50
+ from gopher_mcp_python import GopherAgent
51
+
52
+ agent = GopherAgent.create_with_server_config(provider, model, config)
53
+ answer = agent.run("Hello!")
54
+ agent.dispose()
55
+ ```
56
+
57
+ ## License
58
+
59
+ Apache License 2.0
@@ -0,0 +1,17 @@
1
+ README.md
2
+ pyproject.toml
3
+ gopher_mcp_python_native_darwin_arm64/__init__.py
4
+ gopher_mcp_python_native_darwin_arm64.egg-info/PKG-INFO
5
+ gopher_mcp_python_native_darwin_arm64.egg-info/SOURCES.txt
6
+ gopher_mcp_python_native_darwin_arm64.egg-info/dependency_links.txt
7
+ gopher_mcp_python_native_darwin_arm64.egg-info/top_level.txt
8
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-event.0.1.0.dylib
9
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-event.0.dylib
10
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-event.dylib
11
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp-logging.dylib
12
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp.0.1.0.dylib
13
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp.0.dylib
14
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-mcp.dylib
15
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-orch.0.1.1.dylib
16
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-orch.0.dylib
17
+ gopher_mcp_python_native_darwin_arm64/lib/libgopher-orch.dylib
@@ -0,0 +1,36 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "gopher-mcp-python-native-darwin-arm64"
7
+ version = "0.1.1"
8
+ description = "Native library for gopher-mcp-python (macOS ARM64)"
9
+ readme = "README.md"
10
+ license = {text = "Apache-2.0"}
11
+ authors = [
12
+ {name = "Gopher Security", email = "dev@gophersecurity.com"}
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 4 - Beta",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: Apache Software License",
18
+ "Operating System :: MacOS",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.8",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ ]
26
+ requires-python = ">=3.8"
27
+
28
+ [project.urls]
29
+ Homepage = "https://github.com/GopherSecurity/gopher-mcp-python"
30
+ Repository = "https://github.com/GopherSecurity/gopher-mcp-python"
31
+
32
+ [tool.setuptools]
33
+ packages = ["gopher_mcp_python_native_darwin_arm64"]
34
+
35
+ [tool.setuptools.package-data]
36
+ gopher_mcp_python_native_darwin_arm64 = ["lib/*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+