gopher-mcp-python-native-darwin-x64 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_x64-0.1.1/PKG-INFO +58 -0
  2. gopher_mcp_python_native_darwin_x64-0.1.1/README.md +38 -0
  3. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/__init__.py +24 -0
  4. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-event.0.1.0.dylib +0 -0
  5. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-event.0.dylib +0 -0
  6. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-event.dylib +0 -0
  7. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-logging.dylib +0 -0
  8. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp.0.1.0.dylib +0 -0
  9. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp.0.dylib +0 -0
  10. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp.dylib +0 -0
  11. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-orch.0.1.1.dylib +0 -0
  12. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-orch.0.dylib +0 -0
  13. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64/lib/libgopher-orch.dylib +0 -0
  14. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64.egg-info/PKG-INFO +58 -0
  15. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64.egg-info/SOURCES.txt +17 -0
  16. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64.egg-info/dependency_links.txt +1 -0
  17. gopher_mcp_python_native_darwin_x64-0.1.1/gopher_mcp_python_native_darwin_x64.egg-info/top_level.txt +1 -0
  18. gopher_mcp_python_native_darwin_x64-0.1.1/pyproject.toml +35 -0
  19. gopher_mcp_python_native_darwin_x64-0.1.1/setup.cfg +4 -0
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.4
2
+ Name: gopher-mcp-python-native-darwin-x64
3
+ Version: 0.1.1
4
+ Summary: Native library for gopher-mcp-python (macOS Intel)
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: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # gopher-mcp-python-native-darwin-x64
22
+
23
+ Native library package for gopher-mcp-python (macOS Intel).
24
+
25
+ ## Installation
26
+
27
+ This package is automatically installed as a dependency of `gopher-mcp-python` on compatible platforms.
28
+
29
+ ```bash
30
+ pip install gopher-mcp-python
31
+ ```
32
+
33
+ ## Manual Installation
34
+
35
+ ```bash
36
+ pip install gopher-mcp-python-native-darwin-x64
37
+ ```
38
+
39
+ ## Platform
40
+
41
+ - **OS**: macOS
42
+ - **Architecture**: Intel
43
+
44
+ ## Usage
45
+
46
+ This package is not meant to be used directly. It provides the native library for the main `gopher-mcp-python` package.
47
+
48
+ ```python
49
+ from gopher_mcp_python import GopherAgent
50
+
51
+ agent = GopherAgent.create_with_server_config(provider, model, config)
52
+ answer = agent.run("Hello!")
53
+ agent.dispose()
54
+ ```
55
+
56
+ ## License
57
+
58
+ Apache License 2.0
@@ -0,0 +1,38 @@
1
+ # gopher-mcp-python-native-darwin-x64
2
+
3
+ Native library package for gopher-mcp-python (macOS Intel).
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-x64
17
+ ```
18
+
19
+ ## Platform
20
+
21
+ - **OS**: macOS
22
+ - **Architecture**: Intel
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 Intel).
3
+
4
+ This package contains the native gopher-mcp-python library for macOS on Intel.
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 = "x64"
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,58 @@
1
+ Metadata-Version: 2.4
2
+ Name: gopher-mcp-python-native-darwin-x64
3
+ Version: 0.1.1
4
+ Summary: Native library for gopher-mcp-python (macOS Intel)
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: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # gopher-mcp-python-native-darwin-x64
22
+
23
+ Native library package for gopher-mcp-python (macOS Intel).
24
+
25
+ ## Installation
26
+
27
+ This package is automatically installed as a dependency of `gopher-mcp-python` on compatible platforms.
28
+
29
+ ```bash
30
+ pip install gopher-mcp-python
31
+ ```
32
+
33
+ ## Manual Installation
34
+
35
+ ```bash
36
+ pip install gopher-mcp-python-native-darwin-x64
37
+ ```
38
+
39
+ ## Platform
40
+
41
+ - **OS**: macOS
42
+ - **Architecture**: Intel
43
+
44
+ ## Usage
45
+
46
+ This package is not meant to be used directly. It provides the native library for the main `gopher-mcp-python` package.
47
+
48
+ ```python
49
+ from gopher_mcp_python import GopherAgent
50
+
51
+ agent = GopherAgent.create_with_server_config(provider, model, config)
52
+ answer = agent.run("Hello!")
53
+ agent.dispose()
54
+ ```
55
+
56
+ ## License
57
+
58
+ Apache License 2.0
@@ -0,0 +1,17 @@
1
+ README.md
2
+ pyproject.toml
3
+ gopher_mcp_python_native_darwin_x64/__init__.py
4
+ gopher_mcp_python_native_darwin_x64.egg-info/PKG-INFO
5
+ gopher_mcp_python_native_darwin_x64.egg-info/SOURCES.txt
6
+ gopher_mcp_python_native_darwin_x64.egg-info/dependency_links.txt
7
+ gopher_mcp_python_native_darwin_x64.egg-info/top_level.txt
8
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-event.0.1.0.dylib
9
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-event.0.dylib
10
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-event.dylib
11
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp-logging.dylib
12
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp.0.1.0.dylib
13
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp.0.dylib
14
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-mcp.dylib
15
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-orch.0.1.1.dylib
16
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-orch.0.dylib
17
+ gopher_mcp_python_native_darwin_x64/lib/libgopher-orch.dylib
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "gopher-mcp-python-native-darwin-x64"
7
+ version = "0.1.1"
8
+ description = "Native library for gopher-mcp-python (macOS Intel)"
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
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.8",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ ]
25
+ requires-python = ">=3.8"
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/GopherSecurity/gopher-mcp-python"
29
+ Repository = "https://github.com/GopherSecurity/gopher-mcp-python"
30
+
31
+ [tool.setuptools]
32
+ packages = ["gopher_mcp_python_native_darwin_x64"]
33
+
34
+ [tool.setuptools.package-data]
35
+ gopher_mcp_python_native_darwin_x64 = ["lib/*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+