first commit
Some checks are pending
Build/Publish Develop Docs / deploy (push) Waiting to run

This commit is contained in:
2025-07-02 08:57:16 +03:00
commit 56532cc9a9
1901 changed files with 457695 additions and 0 deletions

20
mcp_server/pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "paddleocr_mcp"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.5.0",
"fastmcp>=2.0.0",
"httpx>=0.24.0",
"numpy>=1.24.0",
"pillow>=9.0.0",
"python-magic>=0.4.24",
"typing-extensions>=4.0.0",
]
[project.scripts]
paddleocr_mcp = "paddleocr_mcp.__main__:main"