fangcloud-mcp 0.1.3__tar.gz → 0.1.5__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,4 +1,4 @@
1
1
  include LICENSE
2
2
  include README.md
3
3
  include pyproject.toml
4
- recursive-include fangcloud_mcp *
4
+ recursive-include fangcloud *
@@ -1,16 +1,11 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: fangcloud-mcp
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
5
- Home-page: https://github.com/example/fangcloud_mcp
5
+ Home-page: https://github.com/example/fangcloud
6
6
  Author: FangCloud Developer
7
- Author-email: dev@example.com
8
- License: UNKNOWN
9
- Project-URL: Bug Reports, https://github.com/example/fangcloud_mcp/issues
10
- Project-URL: Source, https://github.com/example/fangcloud_mcp
11
- Project-URL: Documentation, https://github.com/example/fangcloud_mcp#readme
7
+ Author-email: FangCloud Developer <dev@example.com>
12
8
  Keywords: fangcloud,mcp,cloud storage,api
13
- Platform: UNKNOWN
14
9
  Classifier: Development Status :: 4 - Beta
15
10
  Classifier: Intended Audience :: Developers
16
11
  Classifier: Programming Language :: Python :: 3
@@ -22,6 +17,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
17
  Requires-Python: >=3.12
23
18
  Description-Content-Type: text/markdown
24
19
  License-File: LICENSE
20
+ Requires-Dist: aiohttp>=3.8.6
21
+ Requires-Dist: mcp[cli]>=1.7.1
22
+ Dynamic: author
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: requires-python
25
26
 
26
27
  # FangCloud MCP
27
28
 
@@ -57,26 +58,7 @@ FangCloud MCP 提供以下功能:
57
58
  ### 从 PyPI 安装(推荐)
58
59
 
59
60
  ```bash
60
- pip install fangcloud-mcp
61
- ```
62
-
63
- ### 从源码安装
64
-
65
- ```bash
66
- # 克隆仓库
67
- git clone https://github.com/example/fangcloud-mcp.git
68
- cd fangcloud-mcp
69
-
70
- # 使用pip安装
71
- pip install .
72
- ```
73
-
74
- ### 开发模式安装
75
-
76
- ```bash
77
- git clone https://github.com/example/fangcloud-mcp.git
78
- cd fangcloud-mcp
79
- pip install -e .
61
+ pip install fangcloud
80
62
  ```
81
63
 
82
64
  ## 使用方法
@@ -192,5 +174,3 @@ search_items(query_words: str, search_type: Optional[str] = "all", page_id: Opti
192
174
  ## 许可证
193
175
 
194
176
  [添加许可证信息]
195
-
196
-
@@ -32,26 +32,7 @@ FangCloud MCP 提供以下功能:
32
32
  ### 从 PyPI 安装(推荐)
33
33
 
34
34
  ```bash
35
- pip install fangcloud-mcp
36
- ```
37
-
38
- ### 从源码安装
39
-
40
- ```bash
41
- # 克隆仓库
42
- git clone https://github.com/example/fangcloud-mcp.git
43
- cd fangcloud-mcp
44
-
45
- # 使用pip安装
46
- pip install .
47
- ```
48
-
49
- ### 开发模式安装
50
-
51
- ```bash
52
- git clone https://github.com/example/fangcloud-mcp.git
53
- cd fangcloud-mcp
54
- pip install -e .
35
+ pip install fangcloud
55
36
  ```
56
37
 
57
38
  ## 使用方法
@@ -2,7 +2,7 @@
2
2
  FangCloud MCP - Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
3
3
  """
4
4
 
5
- __version__ = "0.1.3"
5
+ __version__ = "0.1.4"
6
6
 
7
7
  from .fangcloud import main
8
8
  from .fangcloud_api import FangcloudAPI
@@ -1,16 +1,11 @@
1
- Metadata-Version: 2.1
2
- Name: fangcloud_mcp
3
- Version: 0.1.3
1
+ Metadata-Version: 2.4
2
+ Name: fangcloud-mcp
3
+ Version: 0.1.5
4
4
  Summary: FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
5
- Home-page: https://github.com/example/fangcloud_mcp
5
+ Home-page: https://github.com/example/fangcloud
6
6
  Author: FangCloud Developer
7
- Author-email: dev@example.com
8
- License: UNKNOWN
9
- Project-URL: Bug Reports, https://github.com/example/fangcloud_mcp/issues
10
- Project-URL: Source, https://github.com/example/fangcloud_mcp
11
- Project-URL: Documentation, https://github.com/example/fangcloud_mcp#readme
7
+ Author-email: FangCloud Developer <dev@example.com>
12
8
  Keywords: fangcloud,mcp,cloud storage,api
13
- Platform: UNKNOWN
14
9
  Classifier: Development Status :: 4 - Beta
15
10
  Classifier: Intended Audience :: Developers
16
11
  Classifier: Programming Language :: Python :: 3
@@ -22,6 +17,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
17
  Requires-Python: >=3.12
23
18
  Description-Content-Type: text/markdown
24
19
  License-File: LICENSE
20
+ Requires-Dist: aiohttp>=3.8.6
21
+ Requires-Dist: mcp[cli]>=1.7.1
22
+ Dynamic: author
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: requires-python
25
26
 
26
27
  # FangCloud MCP
27
28
 
@@ -57,26 +58,7 @@ FangCloud MCP 提供以下功能:
57
58
  ### 从 PyPI 安装(推荐)
58
59
 
59
60
  ```bash
60
- pip install fangcloud-mcp
61
- ```
62
-
63
- ### 从源码安装
64
-
65
- ```bash
66
- # 克隆仓库
67
- git clone https://github.com/example/fangcloud-mcp.git
68
- cd fangcloud-mcp
69
-
70
- # 使用pip安装
71
- pip install .
72
- ```
73
-
74
- ### 开发模式安装
75
-
76
- ```bash
77
- git clone https://github.com/example/fangcloud-mcp.git
78
- cd fangcloud-mcp
79
- pip install -e .
61
+ pip install fangcloud
80
62
  ```
81
63
 
82
64
  ## 使用方法
@@ -192,5 +174,3 @@ search_items(query_words: str, search_type: Optional[str] = "all", page_id: Opti
192
174
  ## 许可证
193
175
 
194
176
  [添加许可证信息]
195
-
196
-
@@ -3,9 +3,9 @@ MANIFEST.in
3
3
  README.md
4
4
  pyproject.toml
5
5
  setup.py
6
- fangcloud_mcp/__init__.py
7
- fangcloud_mcp/fangcloud.py
8
- fangcloud_mcp/fangcloud_api.py
6
+ fangcloud/__init__.py
7
+ fangcloud/fangcloud.py
8
+ fangcloud/fangcloud_api.py
9
9
  fangcloud_mcp.egg-info/PKG-INFO
10
10
  fangcloud_mcp.egg-info/SOURCES.txt
11
11
  fangcloud_mcp.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ fangcloud = fangcloud.fangcloud:main
@@ -0,0 +1,2 @@
1
+ aiohttp>=3.8.6
2
+ mcp[cli]>=1.7.1
@@ -0,0 +1 @@
1
+ fangcloud
@@ -3,8 +3,8 @@ requires = ["setuptools>=42", "wheel"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
- name = "fangcloud_mcp"
7
- version = "0.1.3"
6
+ name = "fangcloud-mcp"
7
+ version = "0.1.5"
8
8
  description = "FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成"
9
9
  authors = [
10
10
  {name = "FangCloud Developer", email = "dev@example.com"}
@@ -23,18 +23,12 @@ classifiers = [
23
23
  "Topic :: Software Development :: Libraries :: Python Modules",
24
24
  ]
25
25
  dependencies = [
26
- "aiohttp>=3.11.18",
26
+ "aiohttp>=3.8.6",
27
27
  "mcp[cli]>=1.7.1",
28
28
  ]
29
29
 
30
- [project.urls]
31
- Homepage = "https://github.com/example/fangcloud-mcp"
32
- "Bug Reports" = "https://github.com/example/fangcloud-mcp/issues"
33
- Source = "https://github.com/example/fangcloud-mcp"
34
- Documentation = "https://github.com/example/fangcloud-mcp#readme"
35
-
36
30
  [project.scripts]
37
- fangcloud-mcp = "fangcloud_mcp.fangcloud:main"
31
+ fangcloud = "fangcloud.fangcloud:main"
38
32
 
39
33
  [tool.setuptools]
40
- package-dir = {"fangcloud_mcp" = "fangcloud-mcp"}
34
+ package-dir = {"fangcloud" = "fangcloud"}
@@ -1,14 +1,14 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
- name="fangcloud_mcp",
5
- version="0.1.3",
4
+ name="fangcloud-mcp",
5
+ version="0.1.5",
6
6
  author="FangCloud Developer",
7
7
  author_email="dev@example.com",
8
8
  description="FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成",
9
9
  long_description=open("README.md", encoding="utf-8").read(),
10
10
  long_description_content_type="text/markdown",
11
- url="https://github.com/example/fangcloud_mcp",
11
+ url="https://github.com/example/fangcloud",
12
12
  packages=find_packages(),
13
13
  classifiers=[
14
14
  "Development Status :: 4 - Beta",
@@ -23,18 +23,18 @@ setup(
23
23
  keywords="fangcloud, mcp, cloud storage, api",
24
24
  python_requires=">=3.12",
25
25
  install_requires=[
26
- "aiohttp>=3.11.18",
26
+ "aiohttp>=3.8.6",
27
27
  "mcp[cli]>=1.7.1",
28
28
  ],
29
29
  entry_points={
30
30
  "console_scripts": [
31
- "fangcloud_mcp=fangcloud_mcp.fangcloud:main",
31
+ "fangcloud=fangcloud.fangcloud:main",
32
32
  ],
33
33
  },
34
- package_dir={"fangcloud_mcp": "fangcloud_mcp"},
34
+ package_dir={"fangcloud": "fangcloud"},
35
35
  project_urls={
36
- "Bug Reports": "https://github.com/example/fangcloud_mcp/issues",
37
- "Source": "https://github.com/example/fangcloud_mcp",
38
- "Documentation": "https://github.com/example/fangcloud_mcp#readme",
36
+ "Bug Reports": "https://github.com/example/fangcloud/issues",
37
+ "Source": "https://github.com/example/fangcloud",
38
+ "Documentation": "https://github.com/example/fangcloud#readme",
39
39
  },
40
40
  )
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- fangcloud_mcp = fangcloud_mcp.fangcloud:main
3
-
@@ -1,2 +0,0 @@
1
- aiohttp>=3.11.18
2
- mcp[cli]>=1.7.1
@@ -1 +0,0 @@
1
- fangcloud_mcp
File without changes
File without changes