trustgraph-mcp 1.1.10__tar.gz → 1.2.3__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.
@@ -1,15 +1,14 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: trustgraph-mcp
3
- Version: 1.1.10
3
+ Version: 1.2.3
4
4
  Summary: TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.
5
- Home-page: https://github.com/trustgraph-ai/trustgraph
6
- Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v1.1.10.tar.gz
7
- Author: trustgraph.ai
8
- Author-email: security@trustgraph.ai
5
+ Author-email: "trustgraph.ai" <security@trustgraph.ai>
6
+ Project-URL: Homepage, https://github.com/trustgraph-ai/trustgraph
9
7
  Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
11
8
  Classifier: Operating System :: OS Independent
12
9
  Requires-Python: >=3.8
13
10
  Description-Content-Type: text/markdown
11
+ Requires-Dist: mcp
12
+ Requires-Dist: websockets
14
13
 
15
14
  See https://trustgraph.ai/
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "trustgraph-mcp"
7
+ dynamic = ["version"]
8
+ authors = [{name = "trustgraph.ai", email = "security@trustgraph.ai"}]
9
+ description = "TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline."
10
+ readme = "README.md"
11
+ requires-python = ">=3.8"
12
+ dependencies = [
13
+ "mcp",
14
+ "websockets",
15
+ ]
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "Operating System :: OS Independent",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/trustgraph-ai/trustgraph"
23
+
24
+ [project.scripts]
25
+ mcp-server = "trustgraph.mcp_server:run"
26
+
27
+ [tool.setuptools.packages.find]
28
+ include = ["trustgraph*"]
29
+
30
+ [tool.setuptools.dynamic]
31
+ version = {attr = "trustgraph.mcp_version.__version__"}
@@ -0,0 +1 @@
1
+ __version__ = "1.2.3"
@@ -1,15 +1,14 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: trustgraph-mcp
3
- Version: 1.1.10
3
+ Version: 1.2.3
4
4
  Summary: TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.
5
- Home-page: https://github.com/trustgraph-ai/trustgraph
6
- Download-URL: https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v1.1.10.tar.gz
7
- Author: trustgraph.ai
8
- Author-email: security@trustgraph.ai
5
+ Author-email: "trustgraph.ai" <security@trustgraph.ai>
6
+ Project-URL: Homepage, https://github.com/trustgraph-ai/trustgraph
9
7
  Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
11
8
  Classifier: Operating System :: OS Independent
12
9
  Requires-Python: >=3.8
13
10
  Description-Content-Type: text/markdown
11
+ Requires-Dist: mcp
12
+ Requires-Dist: websockets
14
13
 
15
14
  See https://trustgraph.ai/
@@ -1,6 +1,5 @@
1
1
  README.md
2
- setup.py
3
- scripts/mcp-server
2
+ pyproject.toml
4
3
  trustgraph/mcp_version.py
5
4
  trustgraph/mcp_server/__init__.py
6
5
  trustgraph/mcp_server/__main__.py
@@ -9,5 +8,6 @@ trustgraph/mcp_server/tg_socket.py
9
8
  trustgraph_mcp.egg-info/PKG-INFO
10
9
  trustgraph_mcp.egg-info/SOURCES.txt
11
10
  trustgraph_mcp.egg-info/dependency_links.txt
11
+ trustgraph_mcp.egg-info/entry_points.txt
12
12
  trustgraph_mcp.egg-info/requires.txt
13
13
  trustgraph_mcp.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mcp-server = trustgraph.mcp_server:run
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env python3
2
-
3
- from trustgraph.mcp_server import run
4
-
5
- run()
6
-
@@ -1,43 +0,0 @@
1
- import setuptools
2
- import os
3
- import importlib
4
-
5
- with open("README.md", "r") as fh:
6
- long_description = fh.read()
7
-
8
- # Load a version number module
9
- spec = importlib.util.spec_from_file_location(
10
- 'version', 'trustgraph/mcp_version.py'
11
- )
12
- version_module = importlib.util.module_from_spec(spec)
13
- spec.loader.exec_module(version_module)
14
-
15
- version = version_module.__version__
16
-
17
- setuptools.setup(
18
- name="trustgraph-mcp",
19
- version=version,
20
- author="trustgraph.ai",
21
- author_email="security@trustgraph.ai",
22
- description="TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.",
23
- long_description=long_description,
24
- long_description_content_type="text/markdown",
25
- url="https://github.com/trustgraph-ai/trustgraph",
26
- packages=setuptools.find_namespace_packages(
27
- where='./',
28
- ),
29
- classifiers=[
30
- "Programming Language :: Python :: 3",
31
- "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
32
- "Operating System :: OS Independent",
33
- ],
34
- python_requires='>=3.8',
35
- download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
36
- install_requires=[
37
- "mcp",
38
- "websockets",
39
- ],
40
- scripts=[
41
- "scripts/mcp-server",
42
- ]
43
- )
@@ -1 +0,0 @@
1
- __version__ = "1.1.10"