mirror of
http://10.0.2.1:3031/sauer/claw-code.git
synced 2026-06-30 18:47:05 +10:00
10 lines
219 B
Python
10 lines
219 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass(frozen=True)
|
||
|
|
class WorkspaceSetup:
|
||
|
|
python_version: str = '3.13+'
|
||
|
|
test_command: str = 'python3 -m unittest discover -s tests -v'
|