[project]
name = "bio-mcp-evo2"
version = "0.1.0"
description = "MCP server for evo2 DNA language model"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"mcp>=1.1.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"httpx>=0.24.0",
"torch>=2.0.0",
"nvidia-ml-py>=12.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]