adbpg-mcp-server 1.0.0__tar.gz → 1.0.2__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: adbpg-mcp-server
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: ADBPG MCP Server
5
5
  Home-page: https://github.com/aliyun/alibabacloud-adbpg-mcp-server
6
6
  Author: Yutian Qiu
@@ -12,6 +12,7 @@ Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: psycopg>=3.1.0
15
+ Requires-Dist: psycopg-binary>=3.1.0
15
16
  Requires-Dist: mcp>=1.4.0
16
17
  Requires-Dist: pydantic>=2.0.0
17
18
  Requires-Dist: python-dotenv>=1.0.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: adbpg-mcp-server
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: ADBPG MCP Server
5
5
  Home-page: https://github.com/aliyun/alibabacloud-adbpg-mcp-server
6
6
  Author: Yutian Qiu
@@ -12,6 +12,7 @@ Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: psycopg>=3.1.0
15
+ Requires-Dist: psycopg-binary>=3.1.0
15
16
  Requires-Dist: mcp>=1.4.0
16
17
  Requires-Dist: pydantic>=2.0.0
17
18
  Requires-Dist: python-dotenv>=1.0.0
@@ -6,5 +6,6 @@ adbpg-mcp-server/adbpg_mcp_server.py
6
6
  adbpg_mcp_server.egg-info/PKG-INFO
7
7
  adbpg_mcp_server.egg-info/SOURCES.txt
8
8
  adbpg_mcp_server.egg-info/dependency_links.txt
9
+ adbpg_mcp_server.egg-info/entry_points.txt
9
10
  adbpg_mcp_server.egg-info/requires.txt
10
11
  adbpg_mcp_server.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ adbpg_mcp_server = adbpg_mcp_server.adbpg_mcp_server:run
@@ -1,4 +1,5 @@
1
1
  psycopg>=3.1.0
2
+ psycopg-binary>=3.1.0
2
3
  mcp>=1.4.0
3
4
  pydantic>=2.0.0
4
5
  python-dotenv>=1.0.0
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="adbpg-mcp-server",
8
- version="1.0.0",
8
+ version="1.0.2",
9
9
  author="Yutian Qiu",
10
10
  author_email="qiuytian@gmail.com",
11
11
  description="ADBPG MCP Server",
@@ -15,11 +15,17 @@ setuptools.setup(
15
15
  packages=setuptools.find_packages(),
16
16
  install_requires=[
17
17
  "psycopg>=3.1.0",
18
+ "psycopg-binary>=3.1.0",
18
19
  "mcp>=1.4.0",
19
20
  "pydantic>=2.0.0",
20
21
  "python-dotenv>=1.0.0",
21
22
  ],
22
23
  python_requires='>=3.10',
24
+ entry_points={
25
+ 'console_scripts': [
26
+ 'adbpg_mcp_server=adbpg_mcp_server.adbpg_mcp_server:run',
27
+ ],
28
+ },
23
29
  classifiers=[
24
30
  "Programming Language :: Python :: 3",
25
31
  "License :: OSI Approved :: MIT License",