-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.04 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
[project]
name = "codaro"
version = "0.1.0"
description = "Programmable studio — interactive editor runtime for code, learning, and automation"
readme = "README.md"
authors = [
{ name = "eddmpython", email = "206024502+eddmpython@users.noreply.github.com" }
]
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.135.1",
"pydantic>=2.12.5",
"pyyaml>=6.0",
"requests>=2.32.0",
"uvicorn[standard]>=0.41.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
]
[project.scripts]
codaro = "codaro:main"
[build-system]
requires = ["uv_build>=0.9.15,<0.10.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = [
"BLE001",
"S110",
"S112",
"TRY400",
]
[tool.ruff.lint.per-file-ignores]
"src/codaro/runtime/localWorker.py" = ["BLE001", "S110"]
"src/codaro/outputDescriptor.py" = ["BLE001"]
"src/codaro/serverLog.py" = ["BLE001", "S110"]
"src/codaro/errorGuard.py" = ["BLE001"]
[tool.pytest.ini_options]
python_files = ["test*.py"]