fangcloud-mcp 0.1.1__tar.gz → 0.1.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,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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fangcloud-mcp
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
5
5
  Home-page: https://github.com/example/fangcloud-mcp
6
6
  Author: FangCloud Developer
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: fangcloud_mcp
3
- Version: 0.1.1
2
+ Name: fangcloud-mcp
3
+ Version: 0.1.2
4
4
  Summary: FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成
5
5
  Home-page: https://github.com/example/fangcloud-mcp
6
6
  Author: FangCloud Developer
@@ -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-mcp/__init__.py
7
+ fangcloud-mcp/fangcloud.py
8
+ fangcloud-mcp/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 @@
1
+ fangcloud-mcp
@@ -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.1"
6
+ name = "fangcloud-mcp"
7
+ version = "0.1.2"
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"}
@@ -1,8 +1,8 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
- name="fangcloud_mcp",
5
- version="0.1.1",
4
+ name="fangcloud-mcp",
5
+ version="0.1.2",
6
6
  author="FangCloud Developer",
7
7
  author_email="dev@example.com",
8
8
  description="FangCloud MCP 是一个 Model Context Protocol (MCP) 服务器实现,提供与 FangCloud 云存储服务的集成",
@@ -31,6 +31,7 @@ setup(
31
31
  "fangcloud-mcp=fangcloud_mcp.fangcloud:main",
32
32
  ],
33
33
  },
34
+ package_dir={"fangcloud_mcp": "fangcloud-mcp"},
34
35
  project_urls={
35
36
  "Bug Reports": "https://github.com/example/fangcloud-mcp/issues",
36
37
  "Source": "https://github.com/example/fangcloud-mcp",
@@ -1 +0,0 @@
1
- fangcloud_mcp
File without changes
File without changes
File without changes