-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (42 loc) · 1.01 KB
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "sandboxshift"
version = "0.1.0"
description = "Self-hosted AI agent sandbox with automatic local/cloud bursting"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.111",
"uvicorn[standard]>=0.30",
"psutil>=5.9",
"boto3>=1.34",
"pyyaml>=6.0",
# PodmanRuntime: subprocess, asyncio, socket, time, uuid — all stdlib, no new deps
]
[project.scripts]
sandboxshift = "sandboxshift.cli.main:main"
[project.optional-dependencies]
dev = [
"pytest>=8.1",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.4",
"mypy>=1.9",
"httpx>=0.27",
]
[tool.setuptools.package-dir]
"sandboxshift" = "src"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
[tool.mypy]
python_version = "3.11"
strict = true