pyproject.toml•1.88 kB
[project]
name = "pdf-manipulation-mcp-server"
version = "0.1.2"
description = "A study project: MCP server for direct PDF manipulation and editing"
authors = [
    {name = "André da Silva Medeiros", email = "andr3medeiros@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["mcp", "pdf", "manipulation", "server", "study"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Software Development :: Libraries :: Python Modules",
    "Topic :: Text Processing :: Markup",
]
dependencies = [
    "mcp>=1.0.0",
    "pymupdf>=1.23.0",
]
[project.scripts]
pdf-mcp-server = "pdf_manipulation_mcp_server.server:main"
[project.optional-dependencies]
dev = [
    "pytest>=7.0.0",
    "pytest-asyncio>=0.21.0",
    "black>=23.0.0",
    "isort>=5.12.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[dependency-groups]
dev = [
    "pytest>=8.4.2",
    "pytest-asyncio>=1.2.0",
]
[tool.pytest.ini_options]
markers = [
    "text_operations: Text operation tests",
    "page_operations: Page operation tests",
    "image_operations: Image operation tests",
    "annotation_operations: Annotation operation tests",
    "form_operations: Form operation tests",
    "metadata_operations: Metadata operation tests",
    "error_handling: Error handling operation tests",
    "serial",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pdf_manipulation_mcp_server"]