stock-trading-mcp 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,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: stock-trading-mcp
3
+ Version: 0.1.0
4
+ Summary: AKShare MCP Server
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: akshare>=1.17.26
7
+ Requires-Dist: mcp
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Description-Content-Type: text/markdown
11
+
12
+ # AKShare MCP Server
13
+
14
+ An MCP stdio server for A-share market technical analysis powered by AkShare.
15
+
16
+ ## Install
17
+
18
+ ```bash
19
+ pip install stock-trading-mcp
20
+ ```
21
+
22
+ ## Run
23
+
24
+ ```bash
25
+ stock-trading-mcp
26
+ ```
@@ -0,0 +1,15 @@
1
+ # AKShare MCP Server
2
+
3
+ An MCP stdio server for A-share market technical analysis powered by AkShare.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install stock-trading-mcp
9
+ ```
10
+
11
+ ## Run
12
+
13
+ ```bash
14
+ stock-trading-mcp
15
+ ```
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "stock-trading-mcp"
3
+ description = "AKShare MCP Server"
4
+ readme = "README.md"
5
+ requires-python = ">=3.10"
6
+ dependencies = [
7
+ "akshare>=1.17.26",
8
+ "mcp",
9
+ "numpy",
10
+ "pandas",
11
+ ]
12
+ dynamic = ["version"]
13
+
14
+ [project.scripts]
15
+ stock-trading-mcp = "stock_trading_mcp.server:main"
16
+
17
+ [build-system]
18
+ requires = ["hatchling"]
19
+ build-backend = "hatchling.build"
20
+
21
+ [tool.hatch.version]
22
+ path = "stock_trading_mcp/_version.py"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["stock_trading_mcp"]
26
+ include-package-data = true
27
+
28
+ [tool.hatch.build.targets.sdist]
29
+ include = ["stock_trading_mcp*"]
@@ -0,0 +1,3 @@
1
+ from ._version import __version__
2
+
3
+ __all__ = ["__version__"]
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"