-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 830 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 830 Bytes
1
2
3
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
40
41
42
[project]
name = "genomicops-mcp"
version = "0.1.0"
description = "An MCP server for genomic coordinate liftover and feature overlap using the UCSC REST API."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi[standard]",
"uvicorn",
"requests",
"pydantic",
"python-mcp",
"mcp[cli]>=1.16.0",
"fastmcp>=2.12.4",
]
[project.scripts]
genomicops-server = "genomicops.server:main"
[dependency-groups]
dev = [
"black>=25.9.0",
"flake8>=7.3.0",
"isort>=6.1.0",
"mypy>=1.18.2",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
]
test = [
"pytest>=7.4",
"pytest-asyncio>=0.22.0",
"pytest-mock>=3.12",
"httpx>=0.28.1"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["genomicops"]