pyproject.toml 914 Bytes
Newer Older
1
2
[project]
name = "mineru-mcp"
3
version = "1.0.0"
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
description = "MinerU MCP Server for PDF to Markdown conversion"
authors = [
    {name = "minerU",email = "OpenDataLab@pjlab.org.cn"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10,<4.0"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]
dependencies = [
    "fastmcp>=2.5.2",
    "python-dotenv>=1.0.0",
    "requests>=2.31.0",
    "aiohttp>=3.9.0",
    "httpx>=0.24.0",
    "uvicorn>=0.20.0",
    "starlette>=0.27.0",
]

[project.scripts]
mineru-mcp = "mineru.cli:main"

[tool.poetry]
packages = [{include = "mineru", from = "src"}]

[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"

[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"