fangcloud-mcp 0.1.1__tar.gz → 0.1.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,4 +1,4 @@
1
1
  include LICENSE
2
2
  include README.md
3
3
  include pyproject.toml
4
- include setup.py
4
+ recursive-include fangcloud_mcp *
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fangcloud_mcp
3
- Version: 0.1.1
3
+ Version: 0.1.3
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_mcp
6
6
  Author: FangCloud Developer
7
7
  Author-email: dev@example.com
8
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
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
12
12
  Keywords: fangcloud,mcp,cloud storage,api
13
13
  Platform: UNKNOWN
14
14
  Classifier: Development Status :: 4 - Beta
@@ -97,7 +97,7 @@ python fangcloud.py -c <your-access-token>
97
97
 
98
98
  ### 日志
99
99
 
100
- 服务器日志保存在`fangcloud_mcp.log`文件中,同时也会输出到控制台。
100
+ 服务器日志保存在`fangcloud-mcp.log`文件中,同时也会输出到控制台。
101
101
 
102
102
  ## API 参考
103
103
 
@@ -72,7 +72,7 @@ python fangcloud.py -c <your-access-token>
72
72
 
73
73
  ### 日志
74
74
 
75
- 服务器日志保存在`fangcloud_mcp.log`文件中,同时也会输出到控制台。
75
+ 服务器日志保存在`fangcloud-mcp.log`文件中,同时也会输出到控制台。
76
76
 
77
77
  ## API 参考
78
78
 
@@ -2,7 +2,7 @@
2
2
  FangCloud MCP - Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
3
3
  """
4
4
 
5
- __version__ = "0.1.1"
5
+ __version__ = "0.1.3"
6
6
 
7
7
  from .fangcloud import main
8
8
  from .fangcloud_api import FangcloudAPI
@@ -16,7 +16,7 @@ from .fangcloud_api import FangcloudAPI
16
16
 
17
17
 
18
18
  # Configure logging
19
- DEFAULT_LOG_FILE = "fangcloud_mcp.log"
19
+ DEFAULT_LOG_FILE = "fangcloud-mcp.log"
20
20
  logging.basicConfig(
21
21
  level=logging.INFO,
22
22
  format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fangcloud-mcp
3
- Version: 0.1.1
3
+ Version: 0.1.3
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_mcp
6
6
  Author: FangCloud Developer
7
7
  Author-email: dev@example.com
8
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
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
12
12
  Keywords: fangcloud,mcp,cloud storage,api
13
13
  Platform: UNKNOWN
14
14
  Classifier: Development Status :: 4 - Beta
@@ -97,7 +97,7 @@ python fangcloud.py -c <your-access-token>
97
97
 
98
98
  ### 日志
99
99
 
100
- 服务器日志保存在`fangcloud_mcp.log`文件中,同时也会输出到控制台。
100
+ 服务器日志保存在`fangcloud-mcp.log`文件中,同时也会输出到控制台。
101
101
 
102
102
  ## API 参考
103
103
 
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ fangcloud_mcp = fangcloud_mcp.fangcloud:main
3
+
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "fangcloud_mcp"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成"
9
9
  authors = [
10
10
  {name = "FangCloud Developer", email = "dev@example.com"}
@@ -35,3 +35,6 @@ Documentation = "https://github.com/example/fangcloud-mcp#readme"
35
35
 
36
36
  [project.scripts]
37
37
  fangcloud-mcp = "fangcloud_mcp.fangcloud:main"
38
+
39
+ [tool.setuptools]
40
+ package-dir = {"fangcloud_mcp" = "fangcloud-mcp"}
@@ -2,13 +2,13 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="fangcloud_mcp",
5
- version="0.1.1",
5
+ version="0.1.3",
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_mcp",
12
12
  packages=find_packages(),
13
13
  classifiers=[
14
14
  "Development Status :: 4 - Beta",
@@ -28,12 +28,13 @@ setup(
28
28
  ],
29
29
  entry_points={
30
30
  "console_scripts": [
31
- "fangcloud-mcp=fangcloud_mcp.fangcloud:main",
31
+ "fangcloud_mcp=fangcloud_mcp.fangcloud:main",
32
32
  ],
33
33
  },
34
+ package_dir={"fangcloud_mcp": "fangcloud_mcp"},
34
35
  project_urls={
35
- "Bug Reports": "https://github.com/example/fangcloud-mcp/issues",
36
- "Source": "https://github.com/example/fangcloud-mcp",
37
- "Documentation": "https://github.com/example/fangcloud-mcp#readme",
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",
38
39
  },
39
40
  )
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- fangcloud-mcp = fangcloud_mcp.fangcloud:main
3
-
File without changes
File without changes