-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 975 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
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "omcp_py"
version = "0.1.0"
description = "A secure Python code execution sandbox for MCP"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.6.0",
"httpx>=0.27.0",
"flask>=3.0.0",
"pydantic>=2.0.0",
"docker>=7.0.0",
"python-dotenv>=1.0.0",
"SQLAlchemy>=2.0",
"psycopg2-binary>=2.9",
"fastmcp",
"pandas>=1.5.0",
"duckdb>=0.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"black>=24.0.0",
"ruff>=0.6.0",
]
[project.scripts]
omcp-sandbox = "omcp_py.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/omcp_py"]
[tool.uv]
managed = true
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"black>=24.0.0",
"ruff>=0.6.0",
]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.ruff]
line-length = 88
target-version = "py310"