-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 811 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
[project]
name = "deno-sandbox"
version = "0.14.0"
description = "Deno Sandbox Python SDK"
readme = "README.md"
authors = [{ name = "The Deno Team", email = "support@deno.com" }]
requires-python = ">=3.10"
dependencies = [
"httpx>=0.28.1",
"typing-extensions>=4.15.0",
"websockets>=15.0.1",
]
[project.urls]
Repository = "https://github.com/denoland/sandbox-py"
Homepage = "https://deno.com/deploy/sandbox"
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"basedpyright>=1.35.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-timeout>=2.4.0",
"ruff>=0.14.8",
"ty>=0.0.12",
]
[tool.pytest.ini_options]
# asyncio_debug = true
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
timeout = 20