pyproject.toml•861 B
[project]
name = "investing-mcp"
version = "0.1.0"
description = "MCP server for parsing and querying investment statements"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.0.0",
"pymupdf4llm>=0.0.17",
"lancedb>=0.14.0",
"sentence-transformers>=3.0.0",
"aiosqlite>=0.20.0",
"pydantic>=2.0.0",
"python-dateutil>=2.9.0",
"pandas>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"black>=24.0.0",
"ruff>=0.3.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"