mzcache-mcp-server 0.1.0__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,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.14
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: mzcache-mcp-server
3
+ Version: 0.1.0
4
+ Summary: Model Context Protocol server for the MzCache C++ engine
5
+ Author-email: Murtaza Baig <murtazabaig335@gmail.com>
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Classifier: Programming Language :: Python :: 3
9
+ Requires-Python: >=3.10
10
+ Requires-Dist: mcp>=1.2.0
File without changes
@@ -0,0 +1,30 @@
1
+ [project]
2
+ name = "mzcache-mcp-server"
3
+ version = "0.1.0"
4
+ description = "Model Context Protocol server for the MzCache C++ engine"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ authors = [
8
+ { name = "Murtaza Baig", email = "murtazabaig335@gmail.com" }
9
+ ]
10
+ classifiers = [
11
+ "Programming Language :: Python :: 3",
12
+ "License :: OSI Approved :: MIT License",
13
+ "Operating System :: POSIX :: Linux",
14
+ ]
15
+ dependencies = [
16
+ "mcp>=1.2.0",
17
+ ]
18
+
19
+ [project.scripts]
20
+ mzcache-server = "mzcache_mcp.main:main"
21
+
22
+ [build-system]
23
+ requires = ["hatchling"]
24
+ build-backend = "hatchling.build"
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["src/mzcache_mcp"]
28
+
29
+ [tool.hatch.build.targets.wheel.shared-data]
30
+ "src/mzcache_mcp/bin" = "mzcache_mcp/bin"
File without changes