[project]
name = "test-project"
version = "0.1.0"
description = "Test project for MCP Python REPL server"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn",
"sqlmodel",
"alembic",
"pydantic[email]",
"pydantic-settings",
"python-dotenv",
"httpx",
"pytest",
"pytest-cov",
"black",
"ruff",
"rich",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
]